sanitize sky stuff
[deliverable/binutils-gdb.git] / binutils / .Sanitize
index 7d34712ff4024c0ae14ac84fb318c7c0f6dd3410..87b3465ce6c6a162cd321ec9a4730d6a5f3ee3ed 100644 (file)
 
 Do-first:
 
+sky_files="link.c.in"
+
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+       keep_these_too="${sky_files} ${keep_these_too}"
+else
+       lose_these_too="${sky_files} ${lose_these_too}"
+fi
 
 # All files listed between the "Things-to-keep:" line and the
 # "Do-last:" line will be kept.  All other files will be removed.
@@ -185,6 +192,34 @@ else
        done
 fi
 
+sky_files="ChangeLog Makefile.in Makefile.am configure.in configure"
+if ( echo $* | grep keep\-sky > /dev/null ) ; then
+       for i in $sky_files ; do
+               if test ! -d $i && (grep 'sanitize[-_]sky' $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping sky stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $sky_files ; do
+               if test ! -d $i && (grep 'sanitize[-_]sky' $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"sky\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start[-_]sanitize[-_]sky/,/end[-_]sanitize[-_]sky/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
+
 # This must come after all other sanitizations.  Re-sanitize the .pot
 # file.
 if [ -n "${verbose}" ]; then
This page took 0.033321 seconds and 4 git commands to generate.