Wed Feb 14 18:14:11 1996 Alan Modra <alan@spri.levels.unisa.edu.au>
[deliverable/binutils-gdb.git] / include / .Sanitize
index eb7e511c2ee29c2b687e4a0aa60a4310a7ba933f..e54d44a584f5ae7ecd203e13a07c52ed9c3b040c 100644 (file)
 
 Do-first:
 
-if ( echo $* | grep keep\-mpw > /dev/null ) ; then
-       keep_these_too="mpw"
-else
-       lose_these_too="mpw"
-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.
@@ -39,17 +34,21 @@ coff
 demangle.h
 dis-asm.h
 elf
+floatformat.h
 fopen-bin.h
 fopen-same.h
 gdbm.h
 getopt.h
+hp-symtab.h
 ieee.h
-ieee-float.h
 libiberty.h
+mpw
 nlm
 oasys.h
 obstack.h
+os9k.h
 opcode
+progress.h
 wait.h
 
 Things-to-lose:
@@ -57,4 +56,38 @@ Things-to-lose:
 
 Do-last:
 
+arc_files="ChangeLog dis-asm.h"
+if ( echo $* | grep keep\-arc > /dev/null ) ; then
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping arc stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"arc\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
+
 # End of file.
This page took 0.031518 seconds and 4 git commands to generate.