* ieee.c (ieee_slurp_external_symbols): Handle call optimization
[deliverable/binutils-gdb.git] / .Sanitize
index 0aaa8284e011de7fd0ee2a1857d48cdbb4b62e60..426cc4cd94ededfa4cc09f0b4f516d7c0e989c26 100644 (file)
--- a/.Sanitize
+++ b/.Sanitize
@@ -52,7 +52,7 @@ keep_these_too="${keep_these_too} .cvsignore autoconf automake
        emacs emacs19 examples expect fileutils findutils flex
        gas gawk gcc gdb gdbm gdbtest glob gperf gprof grep grez groff
        guile gzip
-       include inet install-sh ispell
+       include inet install-sh intl ispell
        ld less libgcc libgloss libiberty libio
        libstdc++ libtool
        m4 make mkinstalldirs mmalloc move-if-change newlib ncurses opcodes
@@ -117,6 +117,15 @@ else
        lose_these_too="${lose_these_too} ${ide_files}"
 fi
 
+flexlm_files="flexlm"
+
+if (echo $* | grep keep\-cygnus > /dev/null); then
+       keep_these_too="${keep_these_too} ${flexlm_files}"
+       test -n "$verbose" && echo Keeping ${flexlm_files}
+else
+       lose_these_too="${lose_these_too} ${flexlm_files}"
+fi
+
 # CGEN files:
 # It is not yet clear if the cgen package will be shipped with the
 # simulators.
@@ -128,6 +137,15 @@ else
        lose_these_too="${lose_these_too} ${cgen_files}"
 fi
 
+# Java stuff
+java_files="boehm-gc libjava"
+
+if (echo $* | grep keep\-java > /dev/null); then
+       keep_these_too="${keep_these_too} ${java_files}"
+else
+       lose_these_too="${lose_these_too} ${java_files}"
+fi
+
 # This top-level directory is special.  We often check out only subsets
 # of this directory, and complaining about directories or files we didn't
 # check out just gets obnoxious.
@@ -646,7 +664,35 @@ else
        done
 fi
 
-kcygnus_files="configure"
+java_files="ChangeLog Makefile.in configure.in"
+if ( echo $* | grep keep\-java > /dev/null ) ; then
+       for i in $java_files ; do
+               if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping java stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in * ; do
+               if test ! -d $i && (grep sanitize-java $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"java\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-java/,/end-\sanitize\-java/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
+
+kcygnus_files="ChangeLog configure configure.in Makefile.in"
 if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
        for i in $kcygnus_files ; do
                if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
This page took 0.024563 seconds and 4 git commands to generate.