summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 3900145)
raw | patch | inline | side by side (parent: 3900145)
author | Jakub Narebski <jnareb@gmail.com> | |
Tue, 8 Aug 2006 16:36:21 +0000 (18:36 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 8 Aug 2006 20:32:34 +0000 (13:32 -0700) |
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>
--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>
configure.ac | patch | blob | history |
diff --git a/configure.ac b/configure.ac
index e2da89114e31507c9784141f1ab4255cb3cb76b9..c2ddd9b6e8faec7aa6c6975024e3ae893c428f88 100644 (file)
--- a/configure.ac
+++ b/configure.ac
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]); \