Update gdbtk keep/lose to match main GDB sanitize
This commit is contained in:
parent
4936656ad7
commit
588405286c
1 changed files with 22 additions and 15 deletions
|
@ -20,16 +20,16 @@ Do-first:
|
||||||
|
|
||||||
gdbtk_files="gdbgui.texinfo"
|
gdbtk_files="gdbgui.texinfo"
|
||||||
|
|
||||||
if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
|
if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
|
||||||
keep_these_too="${gdbtk_files} ${keep_these_too}"
|
|
||||||
if [ -n "${verbose}" ] ; then
|
|
||||||
echo Keeping ${gdbtk_files}
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
lose_these_too="${gdbtk_files} ${lose_these_too}"
|
lose_these_too="${gdbtk_files} ${lose_these_too}"
|
||||||
if [ -n "${verbose}" ] ; then
|
if [ -n "${verbose}" ] ; then
|
||||||
echo Deleting ${gdbtk_files}
|
echo Deleting ${gdbtk_files}
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
keep_these_too="${gdbtk_files} ${keep_these_too}"
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Keeping ${gdbtk_files}
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# All files listed between the "Things-to-keep:" line and the
|
# All files listed between the "Things-to-keep:" line and the
|
||||||
|
@ -71,17 +71,10 @@ snapshots.readme
|
||||||
|
|
||||||
Do-last:
|
Do-last:
|
||||||
|
|
||||||
echo Catering to RMS by removing traces of \"gdbtk\"...
|
|
||||||
|
|
||||||
# Don't try to clean directories here, as the 'mv' command will fail.
|
# Don't try to clean directories here, as the 'mv' command will fail.
|
||||||
# Also, grep fails on NFS mounted directories.
|
# Also, grep fails on NFS mounted directories.
|
||||||
if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
|
if ( echo $* | grep lose\-gdbtk > /dev/null ) ; then
|
||||||
for i in * ; do
|
echo Catering to RMS by removing traces of \"gdbtk\"...
|
||||||
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
|
||||||
echo Keeping gdbtk stuff in $i
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
else
|
|
||||||
for i in * ; do
|
for i in * ; do
|
||||||
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
||||||
echo Removing traces of \"gdbtk\" out of $i...
|
echo Removing traces of \"gdbtk\" out of $i...
|
||||||
|
@ -94,6 +87,20 @@ else
|
||||||
mv new $i
|
mv new $i
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
else
|
||||||
|
echo Leaving \"gdbtk\" in the sources...
|
||||||
|
for i in * ; do
|
||||||
|
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
||||||
|
echo Keeping \"gdbtk\" stuff in $i, but editing out sanitize lines...
|
||||||
|
cp $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
|
||||||
|
fi
|
||||||
|
mv new $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# End of file.
|
# End of file.
|
||||||
|
|
Loading…
Add table
Reference in a new issue