mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-20 09:58:19 +08:00
Keep/lose gdbtk docs
This commit is contained in:
@ -15,6 +15,23 @@
|
|||||||
|
|
||||||
Do-first:
|
Do-first:
|
||||||
|
|
||||||
|
# Note that gdbgui.texinfo is actually a generic document, but right
|
||||||
|
# now it only describes gdbtk, so we keep/lose as a gdbtk file.
|
||||||
|
|
||||||
|
gdbtk_files="gdbgui.texinfo"
|
||||||
|
|
||||||
|
if ( echo $* | grep keep\-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}"
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Deleting ${gdbtk_files}
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# All files listed between the "Things-to-keep:" line and the
|
# All files listed between the "Things-to-keep:" line and the
|
||||||
# "Files-to-sed:" line will be kept. All other files will be removed.
|
# "Files-to-sed:" line will be kept. All other files will be removed.
|
||||||
# Directories listed in this section will have their own Sanitize
|
# Directories listed in this section will have their own Sanitize
|
||||||
@ -54,4 +71,29 @@ 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.
|
||||||
|
# Also, grep fails on NFS mounted directories.
|
||||||
|
if ( echo $* | grep keep\-gdbtk > /dev/null ) ; then
|
||||||
|
for i in * ; do
|
||||||
|
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
||||||
|
echo Keeping gdbtk stuff in $i
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for i in * ; do
|
||||||
|
if test ! -d $i && (grep sanitize-gdbtk $i > /dev/null) ; then
|
||||||
|
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
|
||||||
|
fi
|
||||||
|
|
||||||
# End of file.
|
# End of file.
|
||||||
|
Reference in New Issue
Block a user