mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-26 13:56:22 +08:00
Start d30v documentation
This commit is contained in:
@ -16,6 +16,14 @@
|
|||||||
|
|
||||||
Do-first:
|
Do-first:
|
||||||
|
|
||||||
|
d30v_files="c-d30v.texi"
|
||||||
|
|
||||||
|
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
|
||||||
|
keep_these_too="${d30v_files} ${keep_these_too}"
|
||||||
|
else
|
||||||
|
lose_these_too="${d30v_files} ${lose_these_too}"
|
||||||
|
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
|
||||||
@ -82,6 +90,34 @@ else
|
|||||||
done
|
done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
v850e_files="c-d30v.texi as.texinfo all.texi"
|
||||||
|
if ( echo $* | grep keep\-d30v > /dev/null ) ; then
|
||||||
|
for i in $d30v_files ; do
|
||||||
|
if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Keeping d30v stuff in $i
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
for i in $d30v_files ; do
|
||||||
|
if test ! -d $i && (grep sanitize-d30v $i > /dev/null) ; then
|
||||||
|
if [ -n "${verbose}" ] ; then
|
||||||
|
echo Removing traces of \"d30v\" from $i...
|
||||||
|
fi
|
||||||
|
cp $i new
|
||||||
|
sed '/start\-sanitize\-d30v/,/end-\sanitize\-d30v/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
|
||||||
|
|
||||||
m32rx_files="c-m32r.texi as.texinfo"
|
m32rx_files="c-m32r.texi as.texinfo"
|
||||||
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
|
if ( echo $* | grep keep\-m32rx > /dev/null ) ; then
|
||||||
for i in $m32rx_files ; do
|
for i in $m32rx_files ; do
|
||||||
|
Reference in New Issue
Block a user