always keep dwarf2.h
[deliverable/binutils-gdb.git] / include / elf / .Sanitize
index 07a873ff58faf89f1c7fad90c961a179f745f311..b3d9f55e9266a2eaba1296a886ef2b7a3ba2f4df 100644 (file)
@@ -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
@@ -34,19 +42,19 @@ fi
 Things-to-keep:
 
 ChangeLog
+alpha.h
 common.h
 dwarf.h
+dwarf2.h
 external.h
 hppa.h
 internal.h
 mips.h
 ppc.h
+sparc.h
 
 Things-to-lose:
 
-# Until v8+ is released.
-sparc.h
-
 Do-last:
 
 arc_files="ChangeLog common.h"
@@ -77,6 +85,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
This page took 0.023943 seconds and 4 git commands to generate.