aboutsummaryrefslogtreecommitdiff
path: root/gas/.Sanitize
diff options
context:
space:
mode:
authorGavin Romig-Koch <gavin@redhat.com>1998-03-03 16:45:13 +0000
committerGavin Romig-Koch <gavin@redhat.com>1998-03-03 16:45:13 +0000
commit2d035a507f81e9f65a58cdc198056bbd7f51a352 (patch)
tree8d4074d77cf8bcf13d61983e60cc49c8374ec8ba /gas/.Sanitize
parentad4413e67ca6df37a8a1f270b25e306e34963339 (diff)
downloadgdb-2d035a507f81e9f65a58cdc198056bbd7f51a352.zip
gdb-2d035a507f81e9f65a58cdc198056bbd7f51a352.tar.gz
gdb-2d035a507f81e9f65a58cdc198056bbd7f51a352.tar.bz2
* config/tc-mips.c : Added vr4320 similar to vr4300.
Diffstat (limited to 'gas/.Sanitize')
-rw-r--r--gas/.Sanitize28
1 files changed, 28 insertions, 0 deletions
diff --git a/gas/.Sanitize b/gas/.Sanitize
index 5592f21..1c49c5c 100644
--- a/gas/.Sanitize
+++ b/gas/.Sanitize
@@ -458,6 +458,34 @@ else
done
fi
+vr4320_files="ChangeLog"
+if ( echo $* | grep keep\-vr4320 > /dev/null ) ; then
+ for i in $vr4320_files ; do
+ if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping vr4320 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $vr4320_files ; do
+ if test ! -d $i && (grep sanitize-vr4320 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"vr4320\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-vr4320/,/end-\sanitize\-vr4320/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