Browse Source

do d10v sanitization over all files

gdb-4_18-branch
Stan Shebs 30 years ago
parent
commit
e696e60686
  1. 6
      gdb/.Sanitize

6
gdb/.Sanitize

@ -518,10 +518,8 @@ else
done
fi
d10v_files="configure.tgt ChangeLog valops.c"
if ( echo $* | grep keep\-d10v > /dev/null ) ; then
for i in $d10v_files ; do
for i in * ; do
if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping d10v stuff in $i
@ -529,7 +527,7 @@ if ( echo $* | grep keep\-d10v > /dev/null ) ; then
fi
done
else
for i in $d10v_files ; do
for i in * ; do
if test ! -d $i && (grep sanitize-d10v $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"d10v\" from $i...

Loading…
Cancel
Save