diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2010-11-09 15:19:09 -0500 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2010-11-09 15:19:09 -0500 |
commit | f6ee80371c4bf9ebd99418a4328a351186ac0847 (patch) | |
tree | 5602354f819a7661f01327c75b97f7d42312455e | |
parent | 6fbb74bfe75adc7cfd6d4bc642d7d4179a3db17d (diff) |
config: HTML file generation: use the installed copy of xorg.css
Currenlty the xorg.css file is copied in each location
where a DocBook/XML file resides. This produces about
70 copies in the $(docdir) install tree.
Signed-off-by: Gaetan Nadon <memsize@videotron.ca>
-rw-r--r-- | specs/.gitignore | 2 | ||||
-rw-r--r-- | specs/Makefile.am | 7 |
2 files changed, 2 insertions, 7 deletions
diff --git a/specs/.gitignore b/specs/.gitignore index 12fe512..6fa5c31 100644 --- a/specs/.gitignore +++ b/specs/.gitignore @@ -1,6 +1,4 @@ -# Add & Override for this directory and it's subdirectories *.html *.ps *.pdf *.txt -*.css diff --git a/specs/Makefile.am b/specs/Makefile.am index 21e5fba..6fcafe7 100644 --- a/specs/Makefile.am +++ b/specs/Makefile.am @@ -49,11 +49,8 @@ doc_DATA += $(doc_sources:.xml=.txt) endif if HAVE_STYLESHEETS -XMLTO_FLAGS = -m $(XSL_STYLESHEET) - -doc_DATA += xorg.css -xorg.css: $(STYLESHEET_SRCDIR)/xorg.css - $(AM_V_GEN)cp -pf $(STYLESHEET_SRCDIR)/xorg.css $@ +XMLTO_FLAGS = -m $(XSL_STYLESHEET) \ + --stringparam html.stylesheet=$(STYLESHEET_SRCDIR)/xorg.css endif CLEANFILES = $(doc_DATA) |