Sanitize arc stuff.
authorDavid Edelsohn <dje.gcc@gmail.com>
Wed, 25 Jan 1995 03:27:54 +0000 (03:27 +0000)
committerDavid Edelsohn <dje.gcc@gmail.com>
Wed, 25 Jan 1995 03:27:54 +0000 (03:27 +0000)
gdb/.Sanitize
gdb/configure.in

index e9a059b5fa38940f874e925eb3a024c4b4ad5649..1d4c1cbd321dae88812b7862b66b913fb832870a 100644 (file)
@@ -424,6 +424,35 @@ else
        done
 fi
 
+arc_files="configure.in"
+
+if ( echo $* | grep keep\-arc > /dev/null ) ; then
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Keeping arc stuff in $i
+                       fi
+               fi
+       done
+else
+       for i in $arc_files ; do
+               if test ! -d $i && (grep sanitize-arc $i > /dev/null) ; then
+                       if [ -n "${verbose}" ] ; then
+                               echo Removing traces of \"arc\" from $i...
+                       fi
+                       cp $i new
+                       sed '/start\-sanitize\-arc/,/end-\sanitize\-arc/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
index 9c1e235fe9f6c1a387ecea2e8a0d98476c14d4ac..2b66b073551a1419776c65066352cbcf0398743b 100644 (file)
@@ -193,7 +193,10 @@ alpha-*-osf*)              gdb_target=alpha-osf1 ;;
 alpha-*-netware*)      gdb_target=alpha-nw
                        configdirs="${configdirs} nlm" ;;
 
+# start-sanitize-arc
 arc-*-*)               gdb_target=arc ;;
+# end-sanitize-arc
+
 arm-*-*)               gdb_target=arm ;;
 
 c1-*-*)                        gdb_target=convex ;;
This page took 0.026897 seconds and 4 git commands to generate.