HP tui support files for gdb.
[deliverable/binutils-gdb.git] / binutils / .Sanitize
index 6366e1ebea443fe60e5073467d776d240f7c9c51..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.
@@ -60,6 +67,9 @@ defparse.y
 dep-in.sed
 dlltool.c
 dlltool.h
+dllwrap.c
+dyn-string.c
+dyn-string.h
 filemode.c
 ieee.c
 is-ranlib.c
@@ -182,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.022952 seconds and 4 git commands to generate.