use changequote around []
[deliverable/binutils-gdb.git] / include / .Sanitize
index 08b43fea8ee23ddd866c978ab02df8956f0f49a9..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.
@@ -44,14 +39,16 @@ 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:
@@ -59,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.024858 seconds and 4 git commands to generate.