From: J.T. Conklin Date: Tue, 20 Aug 1996 21:49:23 +0000 (+0000) Subject: * common.h (EM_CYGNUS_V850): Define. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6bca117d812b49b9aa0be5835f1ebb5635375a62;p=binutils-gdb.git * common.h (EM_CYGNUS_V850): Define. --- diff --git a/include/elf/.Sanitize b/include/elf/.Sanitize index 96f2cb3ee81..644b949b2bd 100644 --- a/include/elf/.Sanitize +++ b/include/elf/.Sanitize @@ -141,6 +141,34 @@ else done fi +v850_files="ChangeLog common.h" +if ( echo $* | grep keep\-v850 > /dev/null ) ; then + for i in $v850_files ; do + if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Keeping v850 stuff in $i + fi + fi + done +else + for i in $v850_files ; do + if test ! -d $i && (grep sanitize-v850 $i > /dev/null) ; then + if [ -n "${verbose}" ] ; then + echo Removing traces of \"v850\" from $i... + fi + cp $i new + sed '/start\-sanitize\-v850/,/end-\sanitize\-v850/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