Initial vr4111 Sanitization marks.

This commit is contained in:
Gavin Romig-Koch 1998-01-15 18:46:32 +00:00
parent 0d0bb9140b
commit ed70a3354d
4 changed files with 112 additions and 0 deletions

View File

@ -430,6 +430,35 @@ else
done
fi
vr4111_files="ChangeLog config.sub"
if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
for i in $vr4111_files ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4111 stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4111\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4111/,/end-\sanitize\-vr4111/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
if ( echo $* | grep keep\-ide > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-ide $i > /dev/null) ; then

View File

@ -403,6 +403,34 @@ else
done
fi
vr4111_files="ChangeLog"
if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
for i in $vr4111_files ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4111 stuff in $i
fi
fi
done
else
for i in $vr4111_files ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4111\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4111/,/end-\sanitize\-vr4111/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
echo '***' Some mentions of Sanitize are still left in $i! 1>&2

View File

@ -412,6 +412,34 @@ else
done
fi
vr4111_files="tc-mips.c"
if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
for i in $vr4111_files ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4111 stuff in $i
fi
fi
done
else
for i in $vr4111_files ; do
if test -r $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4111\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4111/,/end\-sanitize\-vr4111/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
echo '***' Some mentions of Sanitize are still left in $i! 1>&2

View File

@ -713,6 +713,33 @@ else
done
fi
if ( echo $* | grep keep\-vr4111 > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping vr4111 stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-vr4111 $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"vr4111\" from $i...
fi
cp $i new
sed '/start\-sanitize\-vr4111/,/end-\sanitize\-vr4111/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
echo '***' Some mentions of Sanitize are still left in $i! 1>&2