(string.h): Delete 'g' from sed command.

From-SVN: r3522
This commit is contained in:
Jim Wilson 1993-02-24 13:06:04 -08:00
parent b67bfdf71b
commit b24f97e8f2

View File

@ -513,7 +513,7 @@ if [ \! -z "$file_to_fix" ]; then
echo Checking $file_to_fix
cp $file_to_fix /tmp/$base
chmod +w /tmp/$base
sed -e 'g/#define.*__std_hdr_/d' /tmp/$base > /tmp/$base.sed
sed -e '/#define.*__std_hdr_/d' /tmp/$base > /tmp/$base.sed
if cmp $file_to_fix /tmp/$base.sed >/dev/null 2>&1; then \
true
else