Replacing a bogus file with a semi-bogus one (sharing through devo).
[deliverable/binutils-gdb.git] / gdb / .Sanitize
index dc62c14c6fd454a5871303a6934542eb0c56a003..72277209c65368378ad5dbabcbd6de8a05a60fca 100644 (file)
@@ -85,6 +85,20 @@ else
        fi
 fi
 
+carp_files="carp-tdep.c"
+
+if ( echo $* | grep keep\-carp > /dev/null ) ; then
+       keep_these_too="${carp_files} ${keep_these_too}"
+       if [ -n "${verbose}" ] ; then
+               echo Keeping ${carp_files}
+       fi
+else
+       lose_these_too="${carp_files} ${lose_these_too}"
+       if [ -n "${verbose}" ] ; then
+               echo Deleting ${carp_files}
+       fi
+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.
 # Directories listed in this section will have their own Sanitize
@@ -447,6 +461,7 @@ z8k-tdep.c
 
 Things-to-lose:
 
+GDB-HACK-RULES
 HOW_TO_RELEASE
 gdbcfgxref
 
@@ -844,6 +859,33 @@ else
        done
 fi
 
+if ( echo $* | grep keep\-carp > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-carp $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping carp stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-carp $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"carp\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-carp/,/end-\sanitize\-carp/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
This page took 0.023656 seconds and 4 git commands to generate.