From: Stefan Seefeld Date: Thu, 3 Nov 2016 01:53:38 +0000 (-0400) Subject: Fix build to clone missing docbook.css.xml files. X-Git-Tag: snapshot/2016-11-03-35^0 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ac8f30b5415b9c984c2d8acb292bdcb501cd8e71;p=docbook-dsssl Fix build to clone missing docbook.css.xml files. --- diff --git a/xsl/xhtml-1_1/Makefile b/xsl/xhtml-1_1/Makefile index bb59bace2..6cf8d8dee 100644 --- a/xsl/xhtml-1_1/Makefile +++ b/xsl/xhtml-1_1/Makefile @@ -8,7 +8,7 @@ upstream_xsl:=$(wildcard ../html/*.xsl) xsl_files:=$(patsubst ../html/%.xsl, %.xsl, $(upstream_xsl)) xsl_files:=$(filter-out html2xhtml.xsl $(profile_files), $(xsl_files)) -all: $(xsl_files) $(profile_files) +all: $(xsl_files) $(profile_files) docbook.css.xml clean: $(RM) $(xsl_files) $(profile_files) @@ -18,3 +18,6 @@ $(xsl_files): %.xsl: ../html/%.xsl $(profile_files): profile-%.xsl: %.xsl $(XSLT) $< ../profiling/xsl2profile.xsl $@ + +docbook.css.xml: ../html/docbook.css.xml + cp $< $@ diff --git a/xsl/xhtml/Makefile b/xsl/xhtml/Makefile index 5e47f0fe3..385e7ca2d 100644 --- a/xsl/xhtml/Makefile +++ b/xsl/xhtml/Makefile @@ -7,7 +7,7 @@ upstream_xsl:=$(wildcard ../html/*.xsl) xsl_files:=$(patsubst ../html/%.xsl, %.xsl, $(upstream_xsl)) xsl_files:=$(filter-out html2xhtml.xsl $(profile_files), $(xsl_files)) -all: $(xsl_files) $(profile_files) docbook-no-doctype.xsl +all: $(xsl_files) $(profile_files) docbook-no-doctype.xsl docbook.css.xml clean: $(RM) $(xsl_files) $(profile_files) @@ -21,3 +21,5 @@ $(profile_files): profile-%.xsl: %.xsl docbook-no-doctype.xsl: ../html/docbook.xsl $(XSLT) $< html2xhtml.xsl docbook-no-doctype.xsl include.output.doctype=0 +docbook.css.xml: ../html/docbook.css.xml + cp $< $@