diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2011-06-12 17:54:50 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2011-06-12 20:23:28 -0400 |
commit | 7c3c4332d63d9003f7115173b7ece6ab1297cc15 (patch) | |
tree | e979ec1e2bea754251b86caf8c830590f190cc66 | |
parent | c10589c12f45bfb8c0134d0370cf5f36ac7262bf (diff) |
Install xml versions of specs even if HAVE_XMLTO is false
DocBook/XML input source is also a usefull output format that can be viewed
with an XML viewer or editor and by some O/S help system.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | docbook.am | 2 | ||||
-rw-r--r-- | specs/Makefile.am | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -20,6 +20,7 @@ shelf_DATA = # DocBook/XML file with chapters, appendix and images it includes dist_shelf_DATA = $(docbook) $(chapters) +if HAVE_XMLTO # # Generate DocBook/XML output formats with or without stylesheets # @@ -91,5 +92,6 @@ XSLTPROC_FLAGS = \ endif HAVE_XSLTPROC endif HAVE_STYLESHEETS +endif HAVE_XMLTO CLEANFILES = $(shelf_DATA) diff --git a/specs/Makefile.am b/specs/Makefile.am index 44068aa..c7c4fe5 100644 --- a/specs/Makefile.am +++ b/specs/Makefile.am @@ -1,7 +1,6 @@ SUBDIRS = SIAddresses if ENABLE_SPECS -if HAVE_XMLTO # Main DocBook/XML files (DOCTYPE book) docbook = x11protocol.xml @@ -19,5 +18,4 @@ shelfdir = $(docdir) # Generate DocBook/XML output formats with or without stylesheets include $(top_srcdir)/docbook.am -endif HAVE_XMLTO endif ENABLE_SPECS |