diff options
author | aszlig <aszlig@redmoonstudios.org> | 2016-07-04T18·13+0200 |
---|---|---|
committer | aszlig <aszlig@redmoonstudios.org> | 2016-07-04T18·13+0200 |
commit | 72fb2ccfa1f472ae2f51149cf74c3abf443b7fcf (patch) | |
tree | 1eec949a9773f9a3a66e57a4db410353475d7b02 /doc/manual | |
parent | 74dd603495273fe8b81d8635676861792cf420e8 (diff) |
Don't hardcode docbook XSL namespace URL
Docbook XSL got updated to version 1.79.1 in NixOS/nixpkgs@fb893a8 and we're still referring to the hardcoded previous version. So instead of just updating this to 1.79.1 we're going to use "current" in the hope that this won't happen again. I have tested this by building the manual under Nix(OS) but I haven't tested this in a non-Nix environment, so I'm not sure whether this could have implications. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Cc: @edolstra
Diffstat (limited to 'doc/manual')
-rw-r--r-- | doc/manual/local.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/local.mk b/doc/manual/local.mk index 52f2884ab18f..3c4fc52dfd67 100644 --- a/doc/manual/local.mk +++ b/doc/manual/local.mk @@ -10,7 +10,7 @@ XSLTPROC = $(xsltproc) --nonet $(xmlflags) \ --stringparam generate.toc "book toc" \ --param keep.relative.image.uris 0 -docbookxsl = http://docbook.sourceforge.net/release/xsl-ns/1.78.1 +docbookxsl = http://docbook.sourceforge.net/release/xsl-ns/current docbookrng = http://docbook.org/xml/5.0/rng/docbook.rng MANUAL_SRCS := $(call rwildcard, $(d), *.xml) |