Filter changes for m32r target.

This commit is contained in:
Michael Snyder 1996-10-31 02:31:56 +00:00
parent f8931413c9
commit 7e69daa771
2 changed files with 43 additions and 0 deletions

View File

@ -48,4 +48,31 @@ Things-to-lose:
Do-last:
if ( echo $* | grep keep\-m32r > /dev/null ) ; then
for i in * ; do
if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Keeping m32r stuff in $i
fi
fi
done
else
for i in * ; do
if test ! -d $i && (grep sanitize-m32r $i > /dev/null) ; then
if [ -n "${verbose}" ] ; then
echo Removing traces of \"m32r\" from $i...
fi
cp $i new
sed '/start\-sanitize\-m32r/,/end-\sanitize\-m32r/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
# eof

View File

@ -21,6 +21,22 @@ Do-first:
# called. Directories not listed will be removed in their entirety
# with rm -rf.
Do-first:
m32r_files="m32r.exp"
if ( echo $* | grep keep\-m32r > /dev/null ) ; then
keep_these_too="${m32r_files} ${keep_these_too}"
if [ -n "${verbose}" ] ; then
echo Keeping ${m32r_files}
fi
else
lose_these_too="${m32r_files} ${lose_these_too}"
if [ -n "${verbose}" ] ; then
echo Deleting ${m32r_files}
fi
fi
Things-to-keep:
abug.exp