From 0a7fed0d5885b796f9229d7698d3dd73b9dd23ed Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Wed, 4 Feb 1998 01:05:07 +0000 Subject: [PATCH] add sanitization of m32rx PIPE attribute, redact can do this more cleanly --- opcodes/.Sanitize | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index f705c43..b53c650 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -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... -- 2.7.4