Return-Path: X-Original-To: apmail-couchdb-commits-archive@www.apache.org Delivered-To: apmail-couchdb-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E8ECAD5D7 for ; Sun, 18 Nov 2012 16:49:54 +0000 (UTC) Received: (qmail 15518 invoked by uid 500); 18 Nov 2012 16:49:53 -0000 Delivered-To: apmail-couchdb-commits-archive@couchdb.apache.org Received: (qmail 14970 invoked by uid 500); 18 Nov 2012 16:49:53 -0000 Mailing-List: contact commits-help@couchdb.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@couchdb.apache.org Delivered-To: mailing list commits@couchdb.apache.org Received: (qmail 14157 invoked by uid 99); 18 Nov 2012 16:49:45 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Nov 2012 16:49:45 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 76713314517; Sun, 18 Nov 2012 16:49:45 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: rnewson@apache.org To: commits@couchdb.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [3/50] git commit: Force exit when help2man is not installed Message-Id: <20121118164945.76713314517@tyr.zones.apache.org> Date: Sun, 18 Nov 2012 16:49:45 +0000 (UTC) Force exit when help2man is not installed Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/8e6d44a4 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/8e6d44a4 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/8e6d44a4 Branch: refs/heads/docs_tmp Commit: 8e6d44a43629a5f53765cf97f4d7d75a20b22eb0 Parents: 5f4fc13 Author: Noah Slater Authored: Sun Oct 14 16:43:59 2012 +0100 Committer: Robert Newson Committed: Sun Nov 18 00:15:33 2012 +0000 ---------------------------------------------------------------------- bin/Makefile.am | 2 +- src/couchdb/priv/Makefile.am | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/8e6d44a4/bin/Makefile.am ---------------------------------------------------------------------- diff --git a/bin/Makefile.am b/bin/Makefile.am index 93c44d4..5125b02 100644 --- a/bin/Makefile.am +++ b/bin/Makefile.am @@ -120,5 +120,5 @@ couchdb.1: couchdb.tpl.in help2man $(HELP2MAN_OPTION) \ --name="Apache CouchDB database server" ./couchdb --output $@; \ else \ - $(top_srcdir)/build-aux/missing help2man; \ + $(top_srcdir)/build-aux/missing help2man && exit 1; \ fi http://git-wip-us.apache.org/repos/asf/couchdb/blob/8e6d44a4/src/couchdb/priv/Makefile.am ---------------------------------------------------------------------- diff --git a/src/couchdb/priv/Makefile.am b/src/couchdb/priv/Makefile.am index 12ce7c7..49fb1e3 100644 --- a/src/couchdb/priv/Makefile.am +++ b/src/couchdb/priv/Makefile.am @@ -71,7 +71,7 @@ couchjs.1: couchjs help2man $(HELP2MAN_OPTION) \ --name="$(package_name) JavaScript interpreter" ./couchjs --output $@; \ else \ - $(top_srcdir)/build-aux/missing help2man; \ + $(top_srcdir)/build-aux/missing help2man && exit 1; \ fi %.cfg: %.cfg.in