check for mentions of sanitized files

This commit is contained in:
Ian Lance Taylor
1998-08-20 20:58:28 +00:00
parent 54e4cfaf3a
commit 53438a7bb0

View File

@ -489,9 +489,19 @@ else
done
fi
for i in * ; do
for i in *; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
echo '***' Some mentions of Sanitize are still left in opcodes/$i! 1>&2
fi
done
for lost in .. $lose_these_too; do
if test $lost != ..; then
for i in Makefile.am Makefile.in configure.in configure; do
if fgrep $lost $i >/dev/null 2>&1; then
echo '***' File $lost was sanitized out but is still mentioned in opcodes/$i 1>&2
fi
done
fi
done