diff options
author | Nick Clifton <nickc@redhat.com> | 1997-09-21 17:44:16 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 1997-09-21 17:44:16 +0000 |
commit | ae6ecba5b49f1da081b84e39f93f3c71b156474b (patch) | |
tree | c4c6dd788c25810008c61f3070c80d40aa7d0ed6 /gas/config/.Sanitize | |
parent | 446df8b8d507381a7c3a9f9929bae5286fb67ff3 (diff) | |
download | gdb-ae6ecba5b49f1da081b84e39f93f3c71b156474b.zip gdb-ae6ecba5b49f1da081b84e39f93f3c71b156474b.tar.gz gdb-ae6ecba5b49f1da081b84e39f93f3c71b156474b.tar.bz2 |
Fixed sanitization bugs.
Diffstat (limited to 'gas/config/.Sanitize')
-rw-r--r-- | gas/config/.Sanitize | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize index 34b56e3..547f8bc 100644 --- a/gas/config/.Sanitize +++ b/gas/config/.Sanitize @@ -292,6 +292,14 @@ fi v850e_files="tc-v850.c tc-v850.h" if ( echo $* | grep keep\-v850e > /dev/null ) ; then for i in $v850e_files ; do + if test ! -d $i && (grep sanitize-v850e $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping v850e stuff in $i + fi + fi + done +else + for i in $v850e_files ; do if test -r $i && (grep sanitize-v850e $i > /dev/null) ; then if [ -n "${verbose}" ] ; then echo Removing traces of \"v850e\" from $i... |