aboutsummaryrefslogtreecommitdiff
path: root/gdb/.Sanitize
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>1998-10-06 07:37:20 +0000
committerAndrew Cagney <cagney@redhat.com>1998-10-06 07:37:20 +0000
commit875f23a11531d8d35a444ef200bd8009d9cd838a (patch)
tree924640158e7c101fc851610f63a6b76315d730cc /gdb/.Sanitize
parentee31ae22843d4ce342b5e258f03fc7a624b6e70e (diff)
downloadfsf-binutils-gdb-875f23a11531d8d35a444ef200bd8009d9cd838a.zip
fsf-binutils-gdb-875f23a11531d8d35a444ef200bd8009d9cd838a.tar.gz
fsf-binutils-gdb-875f23a11531d8d35a444ef200bd8009d9cd838a.tar.bz2
Sanitize anything mentioning CARP.
Diffstat (limited to 'gdb/.Sanitize')
-rw-r--r--gdb/.Sanitize41
1 files changed, 41 insertions, 0 deletions
diff --git a/gdb/.Sanitize b/gdb/.Sanitize
index dc62c14..4afb4a7 100644
--- a/gdb/.Sanitize
+++ b/gdb/.Sanitize
@@ -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