mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-04 15:37:54 +00:00
Added missing sanitization markers
This commit is contained in:
parent
70bb54baba
commit
97837cef65
@ -45,4 +45,38 @@ 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
|
||||
echo '***' Some mentions of Sanitize are still left in $i! 1>&2
|
||||
fi
|
||||
done
|
||||
|
||||
#eof
|
||||
|
@ -1,7 +1,9 @@
|
||||
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>
|
||||
|
||||
* ld-bootstrap/bootstrap.exp: Don't run the --static bootstrap
|
||||
|
Loading…
x
Reference in New Issue
Block a user