diff options
author | Angela Marie Thomas <angela@cygnus> | 1994-11-15 05:27:19 +0000 |
---|---|---|
committer | Angela Marie Thomas <angela@cygnus> | 1994-11-15 05:27:19 +0000 |
commit | f08a8281d396236152395e6b9ebde017d4a024a0 (patch) | |
tree | 405a75d4f40ad8bca24eb38e1f552c5a87b0afaf /include | |
parent | fb9f8033e882bbb8cffb3b0cf54c671283280ecb (diff) | |
download | gdb-f08a8281d396236152395e6b9ebde017d4a024a0.zip gdb-f08a8281d396236152395e6b9ebde017d4a024a0.tar.gz gdb-f08a8281d396236152395e6b9ebde017d4a024a0.tar.bz2 |
Fixed keep_these_too/lose_these_too for mpw and hpread
Diffstat (limited to 'include')
-rw-r--r-- | include/.Sanitize | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/.Sanitize b/include/.Sanitize index ff7023b..aab0e01 100644 --- a/include/.Sanitize +++ b/include/.Sanitize @@ -16,15 +16,15 @@ Do-first: if ( echo $* | grep keep\-mpw > /dev/null ) ; then - keep_these_too="mpw" + keep_these_too="${keep_these_too} mpw" else - lose_these_too="mpw" + lose_these_too="${lose_these_too} mpw" fi if ( echo $* | grep keep\-hpread > /dev/null ) ; then - keep_these_too="hpux-symtab.h ChangeLog.hpread" + keep_these_too="${keep_these_too} hpux-symtab.h ChangeLog.hpread" else - lose_these_too="hpux-symtab.h ChangeLog.hpread" + lose_these_too="${lose_these_too} hpux-symtab.h ChangeLog.hpread" fi # All files listed between the "Things-to-keep:" line and the |