diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2003-06-05 00:24:56 +0000 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2003-06-05 00:24:56 +0000 |
commit | e8d5d89277694daac3ec83ce4f606baedcaa930e (patch) | |
tree | 6569438d53c2f517e85e33ea56744b01f382dc2b /docs | |
parent | 36126f3a2cb1c6fc15fba0ea8982d1ffd4597c15 (diff) | |
download | samba-e8d5d89277694daac3ec83ce4f606baedcaa930e.tar.gz samba-e8d5d89277694daac3ec83ce4f606baedcaa930e.tar.bz2 samba-e8d5d89277694daac3ec83ce4f606baedcaa930e.zip |
@$(@XSLTPROC) -> @$(XSLTPROC). Caught by Vance Lankhaar.
(This used to be commit 5612f81e94d3f2b5f70f638b4ed391a2d41ae330)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/docbook/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docbook/Makefile.in b/docs/docbook/Makefile.in index 7847dac9e2..5f8d198c64 100644 --- a/docs/docbook/Makefile.in +++ b/docs/docbook/Makefile.in @@ -199,12 +199,12 @@ $(MANPROJDOC)/smb.conf.5.xml: $(SMBDOTCONFDOC)/smb.conf.5.xml $(SMBDOTCONFDOC)/p $(PROJDOC)/attributions.xml: $(PROJDOC)/samba-doc.xml @echo > $@ # Make sure we don't get recursive dependencies, etc! @echo "Generating attributions page" - @$(@XSLTPROC) --output $@ xslt/generate-attributions.xsl $< + @$(XSLTPROC) --output $@ xslt/generate-attributions.xsl $< $(DEVDOC)/attributions.xml: $(DEVDOC)/dev-doc.xml @echo > $@ # Make sure we don't get recursive dependencies, etc! @echo "Generating attributions page" - @$(@XSLTPROC) --output $@ xslt/generate-attributions.xsl $< + @$(XSLTPROC) --output $@ xslt/generate-attributions.xsl $< $(MANDIR): mkdir $(MANDIR) |