Keep/lose gdbtk docs
authorStan Shebs <shebs@codesourcery.com>
Sat, 7 Jan 1995 01:21:01 +0000 (01:21 +0000)
committerStan Shebs <shebs@codesourcery.com>
Sat, 7 Jan 1995 01:21:01 +0000 (01:21 +0000)
gdb/doc/.Sanitize

index cc8010d7bff78efdc0f157776e39666a9928aaf0..3f476e1eca6efa9af248fee6f60ba5e2e84997ce 100644 (file)
 
 Do-first:
 
+# Note that gdbgui.texinfo is actually a generic document, but right
+# now it only describes gdbtk, so we keep/lose as a gdbtk file.
+
+gdbtk_files="gdbgui.texinfo"
+
+if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
+       keep_these_too="${gdbtk_files} ${keep_these_too}"
+       if [ -n "${verbose}" ] ; then
+               echo Keeping ${gdbtk_files}
+       fi
+else
+       lose_these_too="${gdbtk_files} ${lose_these_too}"
+       if [ -n "${verbose}" ] ; then
+               echo Deleting ${gdbtk_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
@@ -54,4 +71,29 @@ snapshots.readme
 
 Do-last:
 
+echo Catering to RMS by removing traces of \"gdbtk\"...
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
+                       echo Keeping gdbtk stuff in $i
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
+                       echo Removing traces of \"gdbtk\" out of $i...
+                       cp $i new
+                       sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new
+                       if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+                               echo Caching $i in .Recover...
+                               mv $i .Recover
+                       fi
+                       mv new $i
+               fi
+       done
+fi
+
 # End of file.