From: Nick Clifton Date: Tue, 3 Feb 1998 01:08:35 +0000 (+0000) Subject: Added m32rx sanitization. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=c62448bfe0901dd004d774faf576d414b1ecf3d5;p=binutils-gdb.git Added m32rx sanitization. --- diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 92178400a97..f705c434802 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -438,6 +438,34 @@ else done fi +m32rx_files="ChangeLog m32r-opc.c m32r-opc.h m32r-dis.c m32r-asm.c" +if ( echo $* | grep keep\-m32rx > /dev/null ) ; then + for i in $m32rx_files ; do + if test -f $i && (grep sanitize-m32rx $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping m32rx stuff in $i + fi + fi + done +else + for i in $m32rx_files ; do + if test -f $i && (grep sanitize-m32rx $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"m32rx\" from $i... + fi + cp $i new + sed '/start\-sanitize\-m32rx/,/end\-sanitize\-m32rx/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