diff options
-rw-r--r-- | binutils/.Sanitize | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/binutils/.Sanitize b/binutils/.Sanitize index cc24532..eac2b1e 100644 --- a/binutils/.Sanitize +++ b/binutils/.Sanitize @@ -80,3 +80,24 @@ version.c Things-to-lose: Do-last: + +ppcfiles="ChangeLog nlmconv.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 +fi |