diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2005-02-10 20:27:44 +0000 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-04-23 08:46:13 -0500 |
commit | b40cdb07f91d16b54ddf11401b5de8de3ca5f665 (patch) | |
tree | 5a3b7374b153bf419cb1de4809feffe7dc717879 /docs/Makefile | |
parent | fce3e0803b6e04a32516bd2ce2ef128e71a5df79 (diff) | |
download | samba-b40cdb07f91d16b54ddf11401b5de8de3ca5f665.tar.gz samba-b40cdb07f91d16b54ddf11401b5de8de3ca5f665.tar.bz2 samba-b40cdb07f91d16b54ddf11401b5de8de3ca5f665.zip |
Fix some warnings
(This used to be commit 20b8daa76827754e7622141ec6b1dcc65d4764e3)
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/Makefile b/docs/Makefile index 7f4ffde695..f117b34b69 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -105,8 +105,7 @@ $(HTMLDIR)/%.html: $(DOCBOOKDIR)/%.xml $(HTMLDIR)/samba.css xslt/html.xsl $(XSLTPROC) --output $@ xslt/html.xsl $< %-attributions.xml: - echo "<para/>" > $@ - $(XSLTPROC) --xinclude xslt/generate-attributions.xsl $*/index.xml > $@ + $(XSLTPROC) --xinclude -o $@ xslt/generate-attributions.xsl $*/index.xml clobber: clean rm Makefile.settings settings.xsl config.status config.log configure @@ -228,9 +227,9 @@ $(PEARSONDIR)/%.report.html: $(PEARSONDIR)/%.xml # Validation verification -$(VALIDATEDIR)/%.report.html: $(DOCBOOKDIR)/%.xml +$(VALIDATEDIR)/%.report.html: %/index.xml mkdir -p $(@D) - $(XMLLINT) --valid --noout --htmlout $< 2> $@ + $(XMLLINT) --xinclude --postvalid --noout --htmlout $< 2> $@ validate: $(VALIDATEDIR)/Samba-HOWTO-Collection.report.html $(VALIDATEDIR)/Samba-Developers-Guide.report.html $(VALIDATEDIR)/Samba-Guide.report.html |