Fix minor sanitization problems.

This commit is contained in:
Fred Fish 1998-01-26 17:14:55 +00:00
parent 0ca3c05121
commit e454c4004f
2 changed files with 56 additions and 3 deletions

View File

@ -488,9 +488,20 @@ fi
if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
echo Catering to RMS by removing traces of \"gdbtk\"...
if [ -n "${verbose}" ] ; then
echo Removing traces of \"gdbtk\" from Makefile.in...
fi
for i in * ; do
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"gdbtk\" from $i...
fi
cp $i new
sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
echo Caching $i in .Recover...
mv $i .Recover
fi
mv new $i
fi
done
cp Makefile.in new
sed -e '/GDBTK_SUPPORT_DIRS=/d' -e 's/ $(GDBTK_SUPPORT_DIRS)//' < Makefile.in > new
if [ -n "${safe}" -a ! -f .Recover/Makefile.in ] ; then
@ -500,6 +511,22 @@ if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
mv Makefile.in .Recover
fi
mv new Makefile.in
else
echo Leaving \"gdbtk\" in the sources...
for i in * ; do
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
fi
cp $i new
sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
echo Caching $i in .Recover...
mv $i .Recover
fi
mv new $i
fi
done
fi
vr5400_files="ChangeLog config.sub"

View File

@ -780,6 +780,32 @@ else
fi
done
fi
if ( echo $* | grep keep\-ide > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping ide stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"ide\" from $i...
fi
cp $i new
sed '/start\-sanitize\-ide/,/end-\sanitize\-ide/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...
fi
mv $i .Recover
fi
mv new $i
fi
done
fi
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then