diff options
author | Stan Shebs <shebs@codesourcery.com> | 1995-05-10 01:25:02 +0000 |
---|---|---|
committer | Stan Shebs <shebs@codesourcery.com> | 1995-05-10 01:25:02 +0000 |
commit | a06cde09124a7a4af1da848e3ee01a80a40a10fb (patch) | |
tree | 1bf78b11035b56aff45c3c98a3d747a193d7ee7f /gdb/.Sanitize | |
parent | 417ced0de7d535ea4ab39e4606df5ef8a457cbd4 (diff) | |
download | gdb-a06cde09124a7a4af1da848e3ee01a80a40a10fb.zip gdb-a06cde09124a7a4af1da848e3ee01a80a40a10fb.tar.gz gdb-a06cde09124a7a4af1da848e3ee01a80a40a10fb.tar.bz2 |
Fix sed'iting of files with gdbtk stuff in them
Diffstat (limited to 'gdb/.Sanitize')
-rw-r--r-- | gdb/.Sanitize | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/gdb/.Sanitize b/gdb/.Sanitize index 9b23ec1..2ce0ad8 100644 --- a/gdb/.Sanitize +++ b/gdb/.Sanitize @@ -362,22 +362,29 @@ state.h Do-last: -echo Catering to RMS by removing traces of \"gdbtk\"... - # Don't try to clean directories here, as the 'mv' command will fail. # Also, grep fails on NFS mounted directories. -if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then +if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then + echo Catering to RMS by removing traces of \"gdbtk\"... for i in * ; do if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then - echo Keeping gdbtk stuff in $i + echo Removing traces of \"gdbtk\" out of $i... + cp $i new + sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new + if [ -n "${safe}" -a ! -f .Recover/$i ] ; then + echo Caching $i in .Recover... + mv $i .Recover + fi + mv new $i fi done else + echo Leaving \"gdbtk\" in the sources... for i in * ; do if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then - echo Removing traces of \"gdbtk\" out of $i... + echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines... cp $i new - sed '/start\-sanitize\-gdbtk/,/end-\sanitize\-gdbtk/d' < $i > new + sed -e '/start\-sanitize\-gdbtk/d' -e '/end\-sanitize\-gdbtk/d' < $i > new if [ -n "${safe}" -a ! -f .Recover/$i ] ; then echo Caching $i in .Recover... mv $i .Recover |