diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-01-07 17:17:52 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2014-01-07 17:17:52 +0100 |
commit | c71f8bc18e33da575c2f637a4dfa5e6bf120cd3c (patch) | |
tree | 0ffb49d74d80dd05b771712c943c291decb765d3 /extra/scripts/install_headers.sh | |
parent | c7c5cfdbe803ff0e77f8cded764361ae0803b710 (diff) |
buildsys: fixup unifdef state in skiphash
attempt to fix unifdef swallowing -f defundefile lines
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'extra/scripts/install_headers.sh')
-rwxr-xr-x | extra/scripts/install_headers.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/scripts/install_headers.sh b/extra/scripts/install_headers.sh index 5a966066d..d40ae1332 100755 --- a/extra/scripts/install_headers.sh +++ b/extra/scripts/install_headers.sh @@ -64,7 +64,7 @@ while read -r filename; do "${srcdir}/$filename" \ | sed -e '/^rtld_hidden_proto[ ]*([a-zA-Z0-9_]*)$/d' \ | sed -e '/^lib\(c\|m\|resolv\|dl\|intl\|rt\|nsl\|util\|crypt\|pthread\)_hidden_proto[ ]*([a-zA-Z0-9_]*)$/d' \ - >"${dstdir}/$filename" + > "${dstdir}/$filename" done ) |