summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2017-01-01 23:45:09 +0100
committerBruno Haible <bruno@clisp.org>2017-01-01 23:45:09 +0100
commitea7f2dc650afc574c4902d70b83ab071fcbe080f (patch)
treeabcfd38a29ad41db68c9087226e5c5a38e9b589e /autogen.sh
parent37a4dfd41674500647a0376d252ab8e8a5bfd118 (diff)
downloadlibunistring-ea7f2dc650afc574c4902d70b83ab071fcbe080f.tar.gz
Clarify which version of texinfo.tex is used.
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index c738a86..1465383 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -43,6 +43,8 @@ while :; do
esac
done
+TEXINFO_VERSION=4.13
+
if test $skip_gnulib = false; then
# texinfo.tex
# The most recent snapshot of it is available in the gnulib repository.
@@ -51,7 +53,7 @@ if test $skip_gnulib = false; then
# but that is too old (does not support @arrow{}). So take the version which
# matches the latest stable texinfo release.
if test ! -f build-aux/texinfo.tex; then
- { wget -q --timeout=5 -O build-aux/texinfo.tex.tmp 'http://cvs.savannah.gnu.org/viewvc/*checkout*/texinfo/doc/texinfo.tex?root=texinfo&pathrev=texinfo_4_13' \
+ { wget -q --timeout=5 -O build-aux/texinfo.tex.tmp 'http://cvs.savannah.gnu.org/viewvc/*checkout*/texinfo/doc/texinfo.tex?root=texinfo&pathrev=texinfo_'`echo $TEXINFO_VERSION | sed -e 's/[.]/_/g'` \
&& mv build-aux/texinfo.tex.tmp build-aux/texinfo.tex; \
} || rm -f build-aux/texinfo.tex.tmp
fi