remove armelf sanitization.

This commit is contained in:
Catherine Moore 1998-08-28 20:26:14 +00:00
parent bc10df2bba
commit 0fc4a7d044
2 changed files with 0 additions and 29 deletions

View File

@ -45,33 +45,6 @@ Things-to-lose:
Do-last:
armelf_files="ChangeLog"
if ( echo $* | grep keep\-armelf > /dev/null ) ; then
for i in $armelf_files ; do
if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping armelf stuff in $i
fi
fi
done
else
for i in $armelf_files ; do
if test ! -d $i && (grep sanitize-armelf $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"armelf\" from $i...
fi
cp $i new
sed '/start\-sanitize\-armelf/,/end-\sanitize\-armelf/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

View File

@ -1,8 +1,6 @@
start-sanitize-armelf
Wed Aug 19 11:59:19 1998 Nick Clifton <nickc@cygnus.com>
* ld-srec/srec.exp: Add arm/thumb-elf expected failures.
end-sanitize-armelf
Thu Aug 13 12:41:58 1998 Ian Lance Taylor <ian@cygnus.com>