From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS22989 208.118.235.0/24 X-Spam-Status: No, score=-1.9 required=3.0 tests=BAYES_00 shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: dtas-all@80x24.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by dcvr.yhbt.net (Postfix) with ESMTPS id 7659920078 for ; Fri, 30 Oct 2015 09:51:32 +0000 (UTC) Received: from localhost ([::1]:49374 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6LL-0004SE-To for dtas-all@80x24.org; Fri, 30 Oct 2015 05:51:31 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43414) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6LJ-0004S2-B6 for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Zs6LG-0005qe-2L for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:29 -0400 Received: from dcvr.yhbt.net ([64.71.152.64]:47973) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Zs6LF-0005qS-Sz for dtas-all@nongnu.org; Fri, 30 Oct 2015 05:51:25 -0400 Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id E88F520078 for ; Fri, 30 Oct 2015 09:51:23 +0000 (UTC) From: Eric Wong To: Subject: [PATCH] allow building the gem without pandoc Date: Fri, 30 Oct 2015 09:51:23 +0000 Message-Id: <20151030095123.3407-1-e@80x24.org> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 64.71.152.64 X-BeenThere: dtas-all@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Sender: dtas-all-bounces+dtas-all=80x24.org@nongnu.org Not everybody cares for manpages. --- Documentation/GNUmakefile | 2 +- GNUmakefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/GNUmakefile b/Documentation/GNUmakefile index 537c659..f9b8204 100644 --- a/Documentation/GNUmakefile +++ b/Documentation/GNUmakefile @@ -48,7 +48,7 @@ install-man: man $(INSTALL) -m 644 $(man1) $(DESTDIR)$(man1dir) $(INSTALL) -m 644 $(man7) $(DESTDIR)$(man7dir) %.1 %.7 : %.txt - $(pandoc) -s -t man < $< > $@+ && mv $@+ $@ + $(pandoc) -s -t man < $< > $@ clean:: $(RM) $(man1) $(man7) diff --git a/GNUmakefile b/GNUmakefile index 5075a67..d737b43 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -46,9 +46,9 @@ pkg_extra := GIT-VERSION-FILE lib/dtas/version.rb NEWS NEWS: rake -s $@ gem-man: - $(MAKE) -C Documentation/ gem-man + -$(MAKE) -C Documentation/ gem-man tgz-man: - $(MAKE) -C Documentation/ install-man mandir=$(CURDIR)/man + -$(MAKE) -C Documentation/ install-man mandir=$(CURDIR)/man .PHONY: tgz-man gem-man .gem-manifest: .manifest gem-man -- EW