qulogic/libgnt

doc: Fix extra quotes in version.

2019-04-13, Elliott Sales de Andrade
d3e290421686
Parents f7137b1d72d5
Children b82a6caa66e0
doc: Fix extra quotes in version.

The meson configuration data is set quoted for substitution in the C
files. This adds quotes in the XML too. So change the XML a bit so that
it expects quotes around the version and the resulting docs then don't
have them.
--- a/doc/libgnt-docs.xml Sat Apr 13 03:11:36 2019 -0400
+++ b/doc/libgnt-docs.xml Sat Apr 13 03:23:31 2019 -0400
@@ -3,7 +3,8 @@
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY % local.common.attrib "xmlns:xi CDATA #FIXED 'http://www.w3.org/2003/XInclude'">
-<!ENTITY version SYSTEM "version.xml">
+<!ENTITY % version SYSTEM "version.xml">
+%version;
]>
<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
<bookinfo>
--- a/doc/version.xml.in Sat Apr 13 03:11:36 2019 -0400
+++ b/doc/version.xml.in Sat Apr 13 03:23:31 2019 -0400
@@ -1,1 +1,1 @@
-@GNT_VERSION@
+<!ENTITY version @GNT_VERSION@>