aboutsummaryrefslogtreecommitdiff
path: root/gas/.Sanitize
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1997-12-22 18:03:58 +0000
committerDoug Evans <dje@google.com>1997-12-22 18:03:58 +0000
commit103dd76488b8c818d48c340baa73d162c5c474fd (patch)
treeb64a2d57fb031546d060ec42bd6591d82637994d /gas/.Sanitize
parent209fb3464228555984df611ef9ffafe6978ab209 (diff)
downloadgdb-103dd76488b8c818d48c340baa73d162c5c474fd.zip
gdb-103dd76488b8c818d48c340baa73d162c5c474fd.tar.gz
gdb-103dd76488b8c818d48c340baa73d162c5c474fd.tar.bz2
* configure.in: Add txvu support.
* configure: Regenerate. * config/tc-txvu.[ch]: New files.
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 0c8d0f7..641b6d9 100644
--- a/gas/.Sanitize
+++ b/gas/.Sanitize
@@ -375,6 +375,34 @@ else
done
fi
+sky_files="ChangeLog configure.in configure"
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+ for i in $sky_files ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping sky stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $sky_files ; do
+ if test ! -d $i && (grep sanitize-sky $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"sky\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-sky/,/end-\sanitize\-sky/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