Fixed exported names, removed a bad define
[deliverable/binutils-gdb.git] / bfd / .Sanitize
index 1cc827eb92afb626b56008e99388b47472327d27..5e4ae30584eedc18e3240c16f8bd43d6a81b9ca8 100644 (file)
@@ -80,6 +80,7 @@ coff-go32.c
 coff-h8300.c
 coff-h8500.c
 coff-i386.c
+coff-i860.c
 coff-i960.c
 coff-m68k.c
 coff-m88k.c
@@ -103,7 +104,7 @@ configure
 configure.bat
 configure.host
 configure.in
-core.c
+corefile.c
 cpu-a29k.c
 cpu-alpha.c
 cpu-arm.c
@@ -111,6 +112,7 @@ cpu-h8300.c
 cpu-h8500.c
 cpu-hppa.c
 cpu-i386.c
+cpu-i860.c
 cpu-i960.c
 cpu-m68k.c
 cpu-m88k.c
@@ -130,6 +132,7 @@ doc
 ecoff.c
 ecofflink.c
 ecoffswap.h
+elf-bfd.h
 elf.c
 elf32-gen.c
 elf32-hppa.c
@@ -152,6 +155,7 @@ elflink.c
 elflink.h
 filemode.c
 format.c
+freebsd.h
 gen-aout.c
 genlink.h
 hash.c
@@ -165,6 +169,7 @@ hpux-core.c
 i386aout.c
 i386bsd.c
 i386dynix.c
+i386freebsd.c
 i386linux.c
 i386netbsd.c
 i386lynx.c
@@ -172,6 +177,7 @@ i386mach3.c
 i386msdos.c
 i386os9k.c
 ieee.c
+ihex.c
 init.c
 irix-core.c
 libaout.h
@@ -181,13 +187,13 @@ libbfd.h
 libcoff-in.h
 libcoff.h
 libecoff.h
-libelf.h
 libhppa.h
 libieee.h
 libnlm.h
 liboasys.h
 linker.c
 lynx-core.c
+m68k4knetbsd.c
 m68klynx.c
 m68knetbsd.c
 m88kmach3.c
@@ -322,6 +328,34 @@ else
        done
 fi
 
+gm_files="ChangeLog ChangeLog.2 config.bfd"
+if ( echo $* | grep keep\-gm > /dev/null ) ; then
+       for i in $gm_files ; do
+               if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping gm stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $gm_files ; do
+               if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"gm\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-gm/,/end-\sanitize\-gm/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
+
 for i in * ; do
        if test ! -d $i && (grep sanitize $i > /dev/null) ; then
                echo '***' Some mentions of Sanitize are still left in $i! 1>&2
This page took 0.024402 seconds and 4 git commands to generate.