Browse Source

fix

gdb-4_18-branch
Angela Marie Thomas 29 years ago
parent
commit
f8b550eb26
  1. 38
      .Sanitize

38
.Sanitize

@ -636,6 +636,44 @@ else
done
fi
kcygnus_files="configure"
if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
for i in $kcygnus_files ; do
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping Cygnus stuff in $i
fi
cp $i new
grep -v sanitize-cygnus $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
else
for i in * ; do
if test ! -d $i && (grep sanitize-cygnus $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"cygnus\" from $i...
fi
cp $i new
sed '/start\-sanitize\-cygnus/,/end-\sanitize\-cygnus/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
# Do this check LAST!
for i in * ; do
if test ! -d $i && (grep sanitize $i > /dev/null) ; then

Loading…
Cancel
Save