diff options
author | Jeff Law <law@redhat.com> | 1999-02-05 17:34:40 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1999-02-05 17:34:40 +0000 |
commit | d53e566bc0df1ffdded4ccdbb7e8a5d772ec201b (patch) | |
tree | b3f45d2beaf4ab77f2e7f568c6c5b46aaa98f61a /binutils/.Sanitize | |
parent | 6a1132ef3ffdd0be346b39197875a4792d326ad4 (diff) | |
download | gdb-d53e566bc0df1ffdded4ccdbb7e8a5d772ec201b.zip gdb-d53e566bc0df1ffdded4ccdbb7e8a5d772ec201b.tar.gz gdb-d53e566bc0df1ffdded4ccdbb7e8a5d772ec201b.tar.bz2 |
m32rx -> cygnus sanitization change.
Diffstat (limited to 'binutils/.Sanitize')
-rw-r--r-- | binutils/.Sanitize | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/binutils/.Sanitize b/binutils/.Sanitize index ad1296f..70394ee 100644 --- a/binutils/.Sanitize +++ b/binutils/.Sanitize @@ -136,23 +136,23 @@ Things-to-lose: Do-last: -m32rx_files="readelf.c" -if ( echo $* | grep keep\-m32rx > /dev/null ) ; then - for i in $m32rx_files ; do - if test ! -d $i && (grep sanitize-m32rx $i > /dev/null) ; then +cygnus_files="readelf.c" +if ( echo $* | grep keep\-cygnus > /dev/null ) ; then + for i in $cygnus_files ; do + if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Keeping m32rx stuff in $i + echo Keeping cygnus stuff in $i fi fi done else - for i in $m32rx_files ; do - if test -r $i && (grep sanitize-m32rx $i > /dev/null) ; then + for i in $cygnus_files ; do + if test -r $i && (grep sanitize-cygnus $i > /dev/null) ; then if [ -n "${verbose}" ] ; then - echo Removing traces of \"m32rx\" from $i... + echo Removing traces of \"cygnus\" from $i... fi cp $i new - sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' < $i > new + sed '/start\-sanitize\-cygnus/,/end\-sanitize\-cygnus/d' < $i > new if [ -n "${safe}" -a ! -f .Recover/$i ] ; then if [ -n "${verbose}" ] ; then echo Caching $i in .Recover... |