Skip to content

Commit

Permalink
Fix build to clone missing docbook.css.xml files.
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanseefeld committed Nov 3, 2016
1 parent dea31cd commit ac8f30b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 4 additions & 1 deletion xsl/xhtml-1_1/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 $< $@
4 changes: 3 additions & 1 deletion xsl/xhtml/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 $< $@

0 comments on commit ac8f30b

Please sign in to comment.