diff options
author | Felix Lee <flee@cygnus> | 1997-09-18 01:33:24 +0000 |
---|---|---|
committer | Felix Lee <flee@cygnus> | 1997-09-18 01:33:24 +0000 |
commit | e1625ed21770ff7fc57ffd12860f945b260073d9 (patch) | |
tree | 1180862f63f43b2a9c08eb4c4ae8aa60cba5f37e /include | |
parent | 00fd8294caee09fda9248f1787000c56c270e608 (diff) | |
download | gdb-e1625ed21770ff7fc57ffd12860f945b260073d9.zip gdb-e1625ed21770ff7fc57ffd12860f945b260073d9.tar.gz gdb-e1625ed21770ff7fc57ffd12860f945b260073d9.tar.bz2 |
v850 files that weren't being removed if !keep-v850
Diffstat (limited to 'include')
-rw-r--r-- | include/elf/.Sanitize | 7 | ||||
-rw-r--r-- | include/opcode/.Sanitize | 6 |
2 files changed, 11 insertions, 2 deletions
diff --git a/include/elf/.Sanitize b/include/elf/.Sanitize index f2e0656..d900ff9 100644 --- a/include/elf/.Sanitize +++ b/include/elf/.Sanitize @@ -22,6 +22,12 @@ Do-first: # called. Directories not listed will be removed in their entirety # with rm -rf. +if ( echo $* | grep keep\-v850 > /dev/null ) ; then + keep_these_too="v850.h ${keep_these_too}" +else + lose_these_too="v850.h ${lose_these_too}" +fi + Things-to-keep: ChangeLog @@ -37,7 +43,6 @@ m32r.h mips.h ppc.h sparc.h -v850.h Things-to-lose: diff --git a/include/opcode/.Sanitize b/include/opcode/.Sanitize index 672b37a..9da64c0 100644 --- a/include/opcode/.Sanitize +++ b/include/opcode/.Sanitize @@ -31,6 +31,11 @@ else lose_these_too="${tic80_files} ${lose_these_too}" fi +if ( echo $* | grep keep\-v850 > /dev/null ) ; then + keep_these_too="v850.h ${keep_these_too}" +else + lose_these_too="v850.h ${lose_these_too}" +fi # All files listed between the "Things-to-keep:" line and the # "Files-to-sed:" line will be kept. All other files will be removed. @@ -65,7 +70,6 @@ ppc.h pyr.h sparc.h tahoe.h -v850.h vax.h Things-to-lose: |