add sanitization of m32rx PIPE attribute, redact can do this more cleanly

This commit is contained in:
Doug Evans 1998-02-04 01:05:07 +00:00
parent 249da91694
commit 0a7fed0d58
1 changed files with 3 additions and 1 deletions

View File

@ -454,7 +454,9 @@ else
echo Removing traces of \"m32rx\" from $i...
fi
cp $i new
sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' < $i > new
# The PIPE sanitization will be much cleaner with redact.
sed -e '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/d' \
-e 's/, PIPE_[A-Z]*//g' < $i > new
if [ -n "${safe}" -a ! -f .Recover/$i ] ; then
if [ -n "${verbose}" ] ; then
echo Caching $i in .Recover...