Browse Source

- remove all *_hidden_proto(...) on install_headers

Bernhard Reutner-Fischer 15 years ago
parent
commit
fc3607dc32
1 changed files with 1 additions and 1 deletions
  1. 1 1
      extra/scripts/install_headers.sh

+ 1 - 1
extra/scripts/install_headers.sh

@@ -46,7 +46,7 @@ while read -r filename; do
 		# exactly the same as input. That's ok.
 		# Do not abort the script if unifdef "fails"!
 		"$top_builddir/extra/scripts/unifdef" -UUCLIBC_INTERNAL "$1/$filename" \
-		    | grep -v '^libc_hidden_proto[ 	]*([a-zA-Z0-9_]*)$' >"$2/$filename"
+		    | sed -e '/^\(rtld\|lib\(c\|m\|resolv\|dl\|intl\|rt\|nsl\|util\|crypt\|pthread\)\)_hidden_proto[ 	]*([a-zA-Z0-9_]*)$/d' >"$2/$filename"
 	fi
 done
 )