Strip beos markers.

This commit is contained in:
Richard Henderson 1998-07-14 23:15:20 +00:00
parent 7034215bc6
commit c86d82ee47
4 changed files with 112 additions and 0 deletions

View file

@ -692,6 +692,34 @@ else
done
fi
beos_files="ChangeLog config.guess configure.in"
if ( echo $* | grep keep\-beos > /dev/null ) ; then
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping beos stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"beos\" from $i...
fi
cp $i new
sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/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
kcygnus_files="ChangeLog configure configure.in Makefile.in"
if ( echo $* | grep keep\-cygnus > /dev/null ) ; then
for i in $kcygnus_files ; do

View file

@ -608,6 +608,34 @@ else
done
fi
beos_files="ChangeLog config.bfd"
if ( echo $* | grep keep\-beos > /dev/null ) ; then
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping beos stuff in $i
fi
fi
done
else
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"beos\" from $i...
fi
cp $i new
sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/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

View file

@ -492,6 +492,34 @@ else
done
fi
beos_files="ChangeLog configure.in configure"
if ( echo $* | grep keep\-beos > /dev/null ) ; then
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping beos stuff in $i
fi
fi
done
else
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"beos\" from $i...
fi
cp $i new
sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/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

View file

@ -293,6 +293,34 @@ else
done
fi
beos_files="ChangeLog Makefile.am Makefile.in configure.tgt"
if ( echo $* | grep keep\-beos > /dev/null ) ; then
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping beos stuff in $i
fi
fi
done
else
for i in $beos_files ; do
if test ! -d $i && (grep sanitize-beos $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"beos\" from $i...
fi
cp $i new
sed '/start\-sanitize\-beos/,/end-\sanitize\-beos/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