mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-10 23:57:03 +08:00
Added missing sanitization markers
This commit is contained in:
@ -45,4 +45,38 @@ Things-to-lose:
|
|||||||
|
|
||||||
Do-last:
|
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
|
||||||
|
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
#eof
|
#eof
|
||||||
|
@ -1,6 +1,8 @@
|
|||||||
|
start-sanitize-armelf
|
||||||
Wed Aug 19 11:59:19 1998 Nick Clifton <nickc@cygnus.com>
|
Wed Aug 19 11:59:19 1998 Nick Clifton <nickc@cygnus.com>
|
||||||
|
|
||||||
* ld-srec/srec.exp: Add arm/thumb-elf expected failures.
|
* 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>
|
Thu Aug 13 12:41:58 1998 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user