X-Git-Url: https://repo.jachan.dev/binutils.git/blobdiff_plain/a862098505dcd844188d3f590e7afe04f1d023fb..e70ad5d5616323c87358b589400f83fecf570f74:/gdb/.Sanitize diff --git a/gdb/.Sanitize b/gdb/.Sanitize index b2c72a8bb7..130304eca3 100644 --- a/gdb/.Sanitize +++ b/gdb/.Sanitize @@ -60,6 +60,20 @@ else fi fi +gm_files="gmagic.c gmagic.h" + +if ( echo $* | grep keep\-gm > /dev/null ) ; then + keep_these_too="${gm_files} ${keep_these_too}" + if [ -n "${verbose}" ] ; then + echo Keeping ${gm_files} + fi +else + lose_these_too="${gm_files} ${lose_these_too}" + if [ -n "${verbose}" ] ; then + echo Deleting ${gm_files} + fi +fi + # All files listed between the "Things-to-keep:" line and the # "Files-to-sed:" line will be kept. All other files will be removed. # Directories listed in this section will have their own Sanitize @@ -77,6 +91,7 @@ ChangeLog-9091 ChangeLog-92 ChangeLog-93 ChangeLog-94 +ChangeLog-95 Makefile.in NEWS README @@ -105,7 +120,7 @@ c-lang.h c-typeprint.c c-valprint.c call-cmds.h -ch-exp.y +ch-exp.c ch-lang.c ch-lang.h ch-typeprint.c @@ -124,10 +139,10 @@ convex-tdep.c convex-xdep.c copying.awk copying.c +core-aout.c +core-regset.c core-sol2.c -core-svr4.c -core.c -coredep.c +corefile.c corelow.c cp-valprint.c cpu32bug-rom.c @@ -140,6 +155,7 @@ delta68-nat.c demangle.c doc dpx2-nat.c +dsrec.c dst.h dstread.c dwarfread.c @@ -169,6 +185,8 @@ gdbcore.h gdbserver gdbtypes.c gdbtypes.h +gnu-regex.c +gnu-regex.h go32-xdep.c gould-tdep.c gould-xdep.c @@ -217,6 +235,7 @@ m88k-tdep.c mac-defs.h mac-xdep.c mac-gdb.r +mac-nat.c main.c maint.c mdebugread.c @@ -247,13 +266,12 @@ osfsolib.c parse.c parser-defs.h partial-stab.h +ppcbug-rom.c printcmd.c procfs.c ptx4-nat.c pyr-tdep.c pyr-xdep.c -regex.c -regex.h remote-adapt.c remote-array.c remote-bug.c @@ -312,6 +330,7 @@ sparc-stub.c sparc-tdep.c sparcl-stub.c sparcl-tdep.c +srec.h stabsread.c stabsread.h stack.c @@ -430,7 +449,7 @@ else done fi -arc_files="configure.in configure ChangeLog" +arc_files="configure.in configure ChangeLog-95" if ( echo $* | grep keep\-arc > /dev/null ) ; then for i in $arc_files ; do @@ -459,24 +478,22 @@ else done fi -sh3e_files="ChangeLog" - -if ( echo $* | grep keep\-sh3e > /dev/null ) ; then - for i in $sh3e_files ; do - if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then +if ( echo $* | grep keep\-gm > /dev/null ) ; then + for i in * ; do + if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Keeping sh3e stuff in $i + echo Keeping gm stuff in $i fi fi done else - for i in $sh3e_files ; do - if test ! -d $i && (grep sanitize-sh3e $i > /dev/null) ; then + for i in * ; do + if test ! -d $i && (grep sanitize-gm $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Removing traces of \"sh3e\" from $i... + echo Removing traces of \"gm\" from $i... fi cp $i new - sed '/start\-sanitize\-sh3e/,/end-\sanitize\-sh3e/d' < $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...