aboutsummaryrefslogtreecommitdiff
path: root/include/elf
diff options
context:
space:
mode:
authorMartin Hunt <hunt@redhat.com>1996-07-18 00:41:43 +0000
committerMartin Hunt <hunt@redhat.com>1996-07-18 00:41:43 +0000
commit770e082760417cdae7e67876bd08fc336b166332 (patch)
tree2c966fb658b4ef9d698faf2792542f6e87a87689 /include/elf
parent3d1d21b02813eaf7b62779e0ae99b4321d15a6f0 (diff)
downloadgdb-770e082760417cdae7e67876bd08fc336b166332.zip
gdb-770e082760417cdae7e67876bd08fc336b166332.tar.gz
gdb-770e082760417cdae7e67876bd08fc336b166332.tar.bz2
start-sanitize-d10v
Wed Jul 17 14:45:12 1996 Martin M. Hunt <hunt@pizza.cygnus.com> * dis-asm.h: (print_insn_d10v): Declare. end-sanitize-d10v
Diffstat (limited to 'include/elf')
-rw-r--r--include/elf/.Sanitize36
1 files changed, 36 insertions, 0 deletions
diff --git a/include/elf/.Sanitize b/include/elf/.Sanitize
index 17e4cc7..42d164f 100644
--- a/include/elf/.Sanitize
+++ b/include/elf/.Sanitize
@@ -25,6 +25,14 @@ else
lose_these_too="${arc_files} ${lose_these_too}"
fi
+d10v_files="d10v.h"
+
+if ( echo $* | grep keep\-d10v > /dev/null ) ; then
+ keep_these_too="${d10v_files} ${keep_these_too}"
+else
+ lose_these_too="${d10v_files} ${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.
# Directories listed in this section will have their own Sanitize
@@ -76,6 +84,34 @@ else
done
fi
+d10v_files="ChangeLog common.h"
+if ( echo $* | grep keep\-d10v > /dev/null ) ; then
+ for i in $d10v_files ; do
+ if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Keeping d10v stuff in $i
+ fi
+ fi
+ done
+else
+ for i in $d10v_files ; do
+ if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
+ if [ -n "${verbose}" ] ; then
+ echo Removing traces of \"d10v\" from $i...
+ fi
+ cp $i new
+ sed '/start\-sanitize\-d10v/,/end-\sanitize\-d10v/d' < $i > new
+ if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
+ if [ -n "${verbose}" ] ; then
+ echo Caching $i in .Recover...
+ fi
+ mv $i .Recover
+ fi
+ mv new $i
+ fi
+ done
+fi
+
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then
echo '***' Some mentions of Sanitize are still left in $i! 1>&2