diff options
author | K. Richard Pixley <rich@cygnus> | 1993-05-27 03:22:48 +0000 |
---|---|---|
committer | K. Richard Pixley <rich@cygnus> | 1993-05-27 03:22:48 +0000 |
commit | 7b85349fe85f22b96495ef7eff04c6e5b28c3d66 (patch) | |
tree | 93e275cc17af762cd950f1de1b088da4c2c5a408 /opcodes | |
parent | 4447efa217407344b433f0e056047e4782aede3f (diff) | |
download | gdb-7b85349fe85f22b96495ef7eff04c6e5b28c3d66.zip gdb-7b85349fe85f22b96495ef7eff04c6e5b28c3d66.tar.gz gdb-7b85349fe85f22b96495ef7eff04c6e5b28c3d66.tar.bz2 |
honor verbose flag
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/.Sanitize | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/opcodes/.Sanitize b/opcodes/.Sanitize index 4cff0d3..1252742 100644 --- a/opcodes/.Sanitize +++ b/opcodes/.Sanitize @@ -49,11 +49,20 @@ alpha-dis.c Do-last: +if ( echo $* | egrep verbose > /dev/null ) ; then + verbose=true +else + verbose= +fi if ( echo $* | grep keep\-v9 > /dev/null ) ; then - echo Keeping v9 in sparc-opc.c + if [ -n "${verbose}" ] ; then + echo Keeping v9 in sparc-opc.c + fi else - echo Sanitizing v9 in sparc-opc.c + if [ -n "${verbose}" ] ; then + echo Sanitizing v9 in sparc-opc.c + fi rm -f new grep -v v9 sparc-opc.c > new if [ -n "${safe}" ] ; then @@ -68,14 +77,18 @@ fi v9dirty="sparc-dis.c" if ( echo $* | grep keep\-v9 > /dev/null ) ; then - echo Keeping v9 in ${v9dirty} + if [ -n "${verbose}" ] ; then + echo Keeping v9 in ${v9dirty} + fi else for i in ${v9dirty} ; do - echo Sanitizing v9 in $i + if [ -n "${verbose}" ] ; then + echo Sanitizing v9 in $i + fi rm -f new sed '/^#ifndef[ ]NO_V9/,/^#endif/d' < $i > new if grep -s -i v9 new ; then - echo ***** SANITIZING V9 IN $i FAILED ***** + echo '***' SANITIZING V9 IN $i FAILED ***** 1>&2 fi if [ -n "${safe}" ] ; then mv $i .Recover |