This is handy for when docbook2x isn't installed. Without this change, we would just build a mostly-empty gitman.texi rather than failing as we should. Signed-off-by: Samuel Bronson <naesten@xxxxxxxxx> --- Documentation/Makefile | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Documentation/Makefile b/Documentation/Makefile index 144ec32..2998f0d 100644 --- a/Documentation/Makefile +++ b/Documentation/Makefile @@ -205,9 +205,11 @@ user-manual.pdf: user-manual.xml mv $@+ $@ gitman.texi: $(MAN_XML) cat-texi.perl - $(RM) $@+ $@ + $(RM) $@++ $@+ $@ ($(foreach xml,$(MAN_XML),$(DOCBOOK2X_TEXI) --encoding=UTF-8 \ - --to-stdout $(xml);)) | $(PERL_PATH) cat-texi.perl $@ >$@+ + --to-stdout $(xml);)) >$@++ + $(PERL_PATH) cat-texi.perl $@ <$@++ >$@+ + $(RM) $@++ mv $@+ $@ gitman.info: gitman.texi -- 1.6.3.1 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html