Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakub Narebski <jnareb@gmail.com>2006-08-08 20:36:21 +0400
committerJunio C Hamano <junkio@cox.net>2006-08-09 00:32:34 +0400
commitb52b1d433b47888d79a73a514aa3430257cba863 (patch)
tree5c70ca013cf68975a2a5ca7e50a4cb2de23999fe /configure.ac
parent3900145ed72bf1dfd656af6a5b31034e818b425f (diff)
autoconf: Error out on --without-shell and --without-perl
Error out on --without-shell/--with-shell=no and --without-perl/--with-perl=no instead of just warning and continuing. Signed-off-by: Jakub Narebski <jnareb@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e2da89114e..c2ddd9b6e8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -37,7 +37,7 @@ AC_DEFUN([GIT_ARG_SET_PATH],
AC_DEFUN([GIT_CONF_APPEND_PATH],
[PROGRAM=m4_toupper($1); \
if test "$withval" = "no"; then \
- AC_MSG_WARN([You cannot use git without $1]); \
+ AC_MSG_ERROR([You cannot use git without $1]); \
else \
if test "$withval" = "yes"; then \
AC_MSG_WARN([You should provide path for --with-$1=PATH]); \