diff options
author | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-06-13 07:47:13 +0000 |
---|---|---|
committer | redi <redi@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-06-13 07:47:13 +0000 |
commit | 530cad45301e42f2c58027503901e0114fbd2090 (patch) | |
tree | ed1cb464aca2781a48193d92b6289ed971cd553f /maintainer-scripts | |
parent | 615e1c3100bd94e1c7da0583c07ad553c19f6ec2 (diff) | |
download | gcc-530cad45301e42f2c58027503901e0114fbd2090.tar.gz |
* generate_libstdcxx_web_docs: Use realpath to get absolute path.
Add comment about LaTeX errors.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@237357 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'maintainer-scripts')
-rw-r--r-- | maintainer-scripts/ChangeLog | 5 | ||||
-rwxr-xr-x | maintainer-scripts/generate_libstdcxx_web_docs | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/maintainer-scripts/ChangeLog b/maintainer-scripts/ChangeLog index 9c50902504c..18513fbe56d 100644 --- a/maintainer-scripts/ChangeLog +++ b/maintainer-scripts/ChangeLog @@ -1,3 +1,8 @@ +2016-06-13 Jonathan Wakely <jwakely@redhat.com> + + * generate_libstdcxx_web_docs: Use realpath to get absolute path. + Add comment about LaTeX errors. + 2016-04-15 Jakub Jelinek <jakub@redhat.com> * crontab: Enable snapshots from gcc-6-branch. diff --git a/maintainer-scripts/generate_libstdcxx_web_docs b/maintainer-scripts/generate_libstdcxx_web_docs index 700e522e25c..00ebcbf7f67 100755 --- a/maintainer-scripts/generate_libstdcxx_web_docs +++ b/maintainer-scripts/generate_libstdcxx_web_docs @@ -3,7 +3,7 @@ # i.e. http://gcc.gnu.org/onlinedocs/gcc-x.y.z/libstdc++* SRCDIR=${1} -DOCSDIR=${2} +DOCSDIR=$(realpath ${2}) if ! [ $# -eq 2 -a -x "${SRCDIR}/configure" -a -d "${DOCSDIR}" ] then @@ -34,6 +34,9 @@ set -x ${SRCDIR}/configure --enable-languages=c,c++ --disable-gcc $disabled_libs --docdir=/docs eval `grep '^target=' config.log` make configure-target +# If the following step fails with an error like +# ! LaTeX Error: File `xtab.sty' not found. +# then you need to install the relevant TeX package e.g. texlive-xtab make -C $target/libstdc++-v3 doc-install-html doc-install-xml doc-install-pdf DESTDIR=$DESTDIR cd $DESTDIR/docs mkdir libstdc++ |