aboutsummaryrefslogtreecommitdiff
path: root/.Sanitize
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1994-10-12 20:13:12 +0000
committerKen Raeburn <raeburn@cygnus>1994-10-12 20:13:12 +0000
commit861185285ec8ba73db616793e552d9d5f32dab42 (patch)
treef60c67fe47deaaaa27fdbbb4d09136613977a342 /.Sanitize
parenteab55c1cef10d11e3957571445b74bc2a24b8136 (diff)
downloadgdb-861185285ec8ba73db616793e552d9d5f32dab42.zip
gdb-861185285ec8ba73db616793e552d9d5f32dab42.tar.gz
gdb-861185285ec8ba73db616793e552d9d5f32dab42.tar.bz2
Restore dje's changes that I accidentally nuked.
Diffstat (limited to '.Sanitize')
-rw-r--r--.Sanitize33
1 files changed, 33 insertions, 0 deletions
diff --git a/.Sanitize b/.Sanitize
index 58dd5ad..932dd4b 100644
--- a/.Sanitize
+++ b/.Sanitize
@@ -172,6 +172,39 @@ else
done
fi
+if [ -n "${verbose}" ] ; then
+ echo Processing \"arc\"...
+fi
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-arc > /dev/null ) ; then
+ for i in * ; 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 * ; 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