diff options
author | Ulrich Müller <ulm@gentoo.org> | 2020-01-16 08:45:45 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2020-01-16 19:49:09 +0100 |
commit | e1543d5e7ac5b0244b43feeb9aca44ca1b33604c (patch) | |
tree | c63427362d2ff748ec0eea2b727ba0c89eb744ca /bin | |
parent | appendices/contributors: Drop attribution for auto-generated page. (diff) | |
download | devmanual-e1543d5e7ac5b0244b43feeb9aca44ca1b33604c.tar.gz devmanual-e1543d5e7ac5b0244b43feeb9aca44ca1b33604c.tar.bz2 devmanual-e1543d5e7ac5b0244b43feeb9aca44ca1b33604c.zip |
bin/gen-eclass-html.sh: Don't include "Reference" in link texts.
This was redundant and inconsistent with the text generated by the
XSL stylesheet.
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/gen-eclass-html.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/gen-eclass-html.sh b/bin/gen-eclass-html.sh index 2234926..db19761 100755 --- a/bin/gen-eclass-html.sh +++ b/bin/gen-eclass-html.sh @@ -141,7 +141,7 @@ installed by emerging <c>app-doc/eclass-manpages</c>. EOF for i in $(find $OUTPUTDIR/ -maxdepth 1 -mindepth 1 -type d | sort); do - echo "<li><uri link=\"$(basename $i)/index.html\">$(basename $i) Reference</uri></li>" >> ${OUTPUTDIR}/text.xml + echo "<li><uri link=\"$(basename $i)/index.html\">$(basename $i)</uri></li>" >> ${OUTPUTDIR}/text.xml done cat << EOF >> ${OUTPUTDIR}/text.xml |