aboutsummaryrefslogtreecommitdiff
path: root/gas/config/.Sanitize
diff options
context:
space:
mode:
Diffstat (limited to 'gas/config/.Sanitize')
-rw-r--r--gas/config/.Sanitize16
1 files changed, 8 insertions, 8 deletions
diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize
index 507aa16..84e7cce 100644
--- a/gas/config/.Sanitize
+++ b/gas/config/.Sanitize
@@ -238,23 +238,23 @@ else
done
fi
-vr5400_files="tc-mips.c"
-if ( echo $* | grep keep\-vr5400 > /dev/null ) ; then
- for i in $vr5400_files ; do
- if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
+cygnus_files="tc-mips.c"
+if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
+ for i in $cygnus_files ; do
+ if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
- echo Keeping vr5400 stuff in $i
+ echo Keeping cygnus stuff in $i
fi
fi
done
else
for i in * ; do
- if test ! -d $i && (grep sanitize-vr5400 $i > /dev/null) ; then
+ if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
- echo Removing traces of \"vr5400\" from $i...
+ echo Removing traces of \"cygnus\" from $i...
fi
cp $i new
- sed '/start\-sanitize\-vr5400/,/end\-sanitize\-vr5400/d' < $i > new
+ sed '/start\-sanitize\-cygnus/,/end\-sanitize\-cygnus/d' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...