Sanitize anything mentioning CARP.
authorAndrew Cagney <cagney@redhat.com>
Tue, 6 Oct 1998 07:37:20 +0000 (07:37 +0000)
committerAndrew Cagney <cagney@redhat.com>
Tue, 6 Oct 1998 07:37:20 +0000 (07:37 +0000)
gdb/.Sanitize

index dc62c14c6fd454a5871303a6934542eb0c56a003..4afb4a79b3e0129bdd3c734d32ef4854e6f070f8 100644 (file)
@@ -85,6 +85,20 @@ else
        fi
 fi
 
+carp_files=""
+
+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
@@ -844,6 +858,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