You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by rn...@apache.org on 2012/11/18 17:49:45 UTC

[3/50] git commit: Force exit when help2man is not installed

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 <ns...@apache.org>
Authored: Sun Oct 14 16:43:59 2012 +0100
Committer: Robert Newson <rn...@apache.org>
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