* rs6000-pinsn.c (print_operand): Deal with no operand instructions.
[deliverable/binutils-gdb.git] / .Sanitize
index 6ba5688f0cb9334cc686e02bc9bbfca89c8719a6..bde9f40b9a9b5e7031b8381d4c450075a7ae446a 100644 (file)
--- a/.Sanitize
+++ b/.Sanitize
 
 Do-first:
 
+if ( echo $* | grep keep\-chill > /dev/null ) ; then
+       keep_these_too="chillrt test-chill"
+fi
+
 # All files listed between the "Things-to-keep:" line and the
 # "Do-last:" line will be kept.  All other files will be removed.
 # Directories listed in this section will have their own Sanitize
@@ -36,12 +40,14 @@ binutils
 build-all.mk
 byacc
 config
+config.guess
 config.sub
 configure
 configure.bat
 configure.in
 cvs
 deja-gnu
+dejagnu
 diff
 dvips
 emacs
@@ -58,7 +64,6 @@ glob
 gprof
 grep
 groff
-h8300sim
 include
 ispell
 ld
@@ -76,17 +81,18 @@ prms
 rcs
 readline
 sed
-send_pr
+send-pr
 shellutils
+sim
 tcl
 textutils
 tk
 test-build.mk
 texinfo
 tgas
+uudecode
 wdiff
 xiberty
-z8ksim
 
 # The lines between the "Do-last:" line and the end of the file
 # are executed as a /bin/sh shell script after everything else is
@@ -118,6 +124,31 @@ else
        done
 fi
 
+echo Thawing away the \"chill\"...
+
+# Don't try to clean directories here, as the 'mv' command will fail.
+# Also, grep fails on NFS mounted directories.
+if ( echo $* | grep keep\-chill > /dev/null ) ; then
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
+                       echo Keeping chill stuff in $i
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-chill $i > /dev/null) ; then
+                       echo Thawing the \"chill\" out of $i...
+                       cp $i new
+                       sed '/start\-sanitize\-chill/,/end-\sanitize\-chill/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
+
 for i in * ; do
        if test ! -d $i && (grep sanitize $i > /dev/null) ; then
                echo Some mentions of Sanitize are still left in $i!
This page took 0.030683 seconds and 4 git commands to generate.