diff options
Diffstat (limited to 'bfd/.Sanitize')
-rw-r--r-- | bfd/.Sanitize | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/bfd/.Sanitize b/bfd/.Sanitize index c57b3f9..7702062 100644 --- a/bfd/.Sanitize +++ b/bfd/.Sanitize @@ -33,12 +33,6 @@ else lose_these_too="ChangeLog.gm ${lose_these_too}" fi -if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then - keep_these_too="nlm32-ppc.c ${keep_these_too}" -else - lose_these_too="nlm32-ppc.c ${lose_these_too}" -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 @@ -184,6 +178,7 @@ nlm-target.h nlm.c nlm32-alpha.c nlm32-i386.c +nlm32-ppc.c nlm32-sparc.c nlm32.c nlm64.c @@ -258,28 +253,4 @@ else chmod a+x config.bfd fi - -ppcfiles="ChangeLog Makefile.in configure.in config.bfd targets.c" -if ( echo $* | grep keep\-powerpc\-netware > /dev/null ) ; then - if [ -n "${verbose}" ] ; then - echo Keeping PowerPC NetWare stuff in $ppcfiles. - fi -else - if [ -n "${verbose}" ]; then - echo -n Removing PowerPC NetWare in `pwd`: - fi - for f in $ppcfiles ; do - if [ -n "${verbose}" ] ; then - echo -n " " $f - fi - sed '/start\-sanitize\-powerpc\-netware/,/end\-sanitize\-powerpc\-netware/d' < $f > new - if [ -n "${safe}" ] ; then - mv $f .Recover - fi - mv new $f - done - chmod a+x config.bfd -fi - - # End of file. |