This commit is contained in:
Angela Marie Thomas 1998-02-27 10:26:19 +00:00
parent 8ca85ce00a
commit f8b550eb26
1 changed files with 38 additions and 0 deletions

View File

@ -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