Fixed exported names, removed a bad define
[deliverable/binutils-gdb.git] / bfd / .Sanitize
index 98b322100448dd02cab3511a4a638cbacc64608b..5e4ae30584eedc18e3240c16f8bd43d6a81b9ca8 100644 (file)
@@ -47,6 +47,8 @@ Makefile.in
 PORTING
 TODO
 VERSION
+acconfig.h
+aclocal.m4
 aix386-core.c
 aout-adobe.c
 aout-arm.c
@@ -78,10 +80,13 @@ coff-go32.c
 coff-h8300.c
 coff-h8500.c
 coff-i386.c
+coff-i860.c
 coff-i960.c
 coff-m68k.c
 coff-m88k.c
 coff-mips.c
+coff-pmac.c
+coff-ppc.c
 coff-rs6000.c
 coff-sh.c
 coff-sparc.c
@@ -93,13 +98,13 @@ coffcode.h
 coffgen.c
 cofflink.c
 coffswap.h
-config
 config.bfd
+config.in
 configure
 configure.bat
 configure.host
 configure.in
-core.c
+corefile.c
 cpu-a29k.c
 cpu-alpha.c
 cpu-arm.c
@@ -107,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
@@ -126,6 +132,7 @@ doc
 ecoff.c
 ecofflink.c
 ecoffswap.h
+elf-bfd.h
 elf.c
 elf32-gen.c
 elf32-hppa.c
@@ -148,6 +155,7 @@ elflink.c
 elflink.h
 filemode.c
 format.c
+freebsd.h
 gen-aout.c
 genlink.h
 hash.c
@@ -161,6 +169,7 @@ hpux-core.c
 i386aout.c
 i386bsd.c
 i386dynix.c
+i386freebsd.c
 i386linux.c
 i386netbsd.c
 i386lynx.c
@@ -168,6 +177,7 @@ i386mach3.c
 i386msdos.c
 i386os9k.c
 ieee.c
+ihex.c
 init.c
 irix-core.c
 libaout.h
@@ -177,20 +187,20 @@ 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
 makefile.dos
 mipsbsd.c
 mpw-config.in
-mpw-make.in
+mpw-make.sed
 newsos3.c
 netbsd.h
 nlm-target.h
@@ -210,8 +220,10 @@ osf-core.c
 pc532-mach.c
 pe-arm.c
 pe-i386.c
+pe-ppc.c
 pei-arm.c
 pei-i386.c
+pei-ppc.c
 peicode.h
 ptrace-core.c
 reloc.c
@@ -227,10 +239,12 @@ srec.c
 stab-syms.c
 sunos.c
 syms.c
+sysdep.h
 targets.c
 tekhex.c
 trad-core.c
 versados.c
+xcofflink.c
 
 Things-to-lose:
 
@@ -314,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.024255 seconds and 4 git commands to generate.