From 7f11621e1ab0807a824d6013105e351baa8ef308 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Wed, 9 Apr 2003 06:15:58 +0000 Subject: 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) --- docs/docbook/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') 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 $@ -- cgit