remove m32r sanitization

This commit is contained in:
David Edelsohn 1997-03-22 19:38:00 +00:00
parent 65d7de4fc2
commit 482a7cddc3
1 changed files with 0 additions and 29 deletions

View File

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