diff options
author | Tim Potter <tpot@samba.org> | 2003-04-09 06:15:58 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-09 06:15:58 +0000 |
commit | 7f11621e1ab0807a824d6013105e351baa8ef308 (patch) | |
tree | 274874fb775b83910a3ad77a096f55a3904e9c3d | |
parent | 91c9960ebabe44b144a4757b8400aef3614827aa (diff) | |
download | samba-7f11621e1ab0807a824d6013105e351baa8ef308.tar.gz samba-7f11621e1ab0807a824d6013105e351baa8ef308.tar.bz2 samba-7f11621e1ab0807a824d6013105e351baa8ef308.zip |
Can I suggest this modification to the documentation Makefile? If
docbook2man fails then we shouldn't charge ahead with the rest of the
target commands and generate more confusing error messages.
(This used to be commit 4e4ed2d25b1717f1a359d495ca03b2efbec89958)
-rw-r--r-- | docs/docbook/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/docbook/Makefile.in b/docs/docbook/Makefile.in index dae5b81e71..14617f7413 100644 --- a/docs/docbook/Makefile.in +++ b/docs/docbook/Makefile.in @@ -122,7 +122,7 @@ $(HTMLDIR)/%.html: $(MANPROJDOC)/%.sgml $(DOCBOOK2HTML) -u -o $(HTMLDIR) $< $(MANDIR)/%: $(MANPROJDOC)/%.sgml - $(DOCBOOK2MAN) -o $(MANDIR) $< || rm $@ + $(DOCBOOK2MAN) -o $(MANDIR) $< $(PERL) scripts/strip-links.pl < $@ > $@.temp mv $@.temp $@ |