aboutsummaryrefslogtreecommitdiff
path: root/include/opcode/.Sanitize
diff options
context:
space:
mode:
authorJ.T. Conklin <jtc@acorntoolworks.com>1996-08-20 21:52:59 +0000
committerJ.T. Conklin <jtc@acorntoolworks.com>1996-08-20 21:52:59 +0000
commit7a3c93362ec9db804300ed0687ca4efdbdf1f799 (patch)
treec14e179b76be3ecd0ee072d6bd7817b776412f13 /include/opcode/.Sanitize
parent6bca117d812b49b9aa0be5835f1ebb5635375a62 (diff)
downloadgdb-7a3c93362ec9db804300ed0687ca4efdbdf1f799.zip
gdb-7a3c93362ec9db804300ed0687ca4efdbdf1f799.tar.gz
gdb-7a3c93362ec9db804300ed0687ca4efdbdf1f799.tar.bz2
* v850.h: New file.
Diffstat (limited to 'include/opcode/.Sanitize')
-rw-r--r--include/opcode/.Sanitize37
1 files changed, 37 insertions, 0 deletions
diff --git a/include/opcode/.Sanitize b/include/opcode/.Sanitize
index b5a4ca8..2c8521c 100644
--- a/include/opcode/.Sanitize
+++ b/include/opcode/.Sanitize
@@ -31,6 +31,14 @@ else
lose_these_too="${d10v_files} ${lose_these_too}"
fi
+v850_files="v850.h"
+
+if ( echo $* | grep keep\-v850 > /dev/null ) ; then
+ keep_these_too="${v850_files} ${keep_these_too}"
+else
+ lose_these_too="${v850_files} ${lose_these_too}"
+fi
+
# All files listed between the "Things-to-keep:" line and the
# "Files-to-sed:" line will be kept. All other files will be removed.
@@ -123,6 +131,35 @@ else
done
fi
+v850_files="ChangeLog"
+if ( echo $* | grep keep\-v850 > /dev/null ) ; then
+ for i in $v850_files ; do
+ if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping v850 stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $v850_files ; do
+ if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"v850\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/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