diff options
author | Stan Shebs <shebs@codesourcery.com> | 1994-04-26 19:53:12 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1994-04-26 19:53:12 +0000 |
commit | 96c805d83c8aed1dde17f890b264e1782be8b043 (patch) | |
tree | 54171979325fb61850bd260145dd81087b2ad914 /.Sanitize | |
parent | d0e2b7671eeebaa0e3312a4c28c4d740dd4e019e (diff) | |
download | gdb-96c805d83c8aed1dde17f890b264e1782be8b043.zip gdb-96c805d83c8aed1dde17f890b264e1782be8b043.tar.gz gdb-96c805d83c8aed1dde17f890b264e1782be8b043.tar.bz2 |
A slight simplication.
Diffstat (limited to '.Sanitize')
-rw-r--r-- | .Sanitize | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -15,16 +15,20 @@ Do-first: +cygnus_files = "release release-info build-all.mk" + if ( echo $* | grep keep\-cygnus > /dev/null) ; then - keep_these_too="${keep_these_too} release release-info build-all.mk" + keep_these_too="${keep_these_too} ${cygnus_files}" else - lose_these_too="${lose_these_too} release release-info build-all.mk" + lose_these_too="${lose_these_too} ${cygnus_files}" fi +mpw_files = "mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw" + if ( echo $* | grep keep\-mpw > /dev/null) ; then - keep_these_too="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${keep_these_too}" + keep_these_too="${keep_these_too} ${mpw_files}" else - lose_these_too="mpw-README mpw-configure mpw-config.in mpw-build.in ChangeLog.mpw ${lose_these_too}" + lose_these_too="${lose_these_too} ${mpw_files}" fi # All files listed between the "Things-to-keep:" line and the |