summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2010-01-01 18:02:30 +0100
committerSven Verdoolaege <skimo@kotnet.org>2010-01-01 18:02:30 +0100
commit0ba619853425ee1f76eaba22a8421f639141d84c (patch)
tree0891b7b827c505c4add48fa7a65cc36559777be7 /m4
parent736ee3cdd92eef60af1dd6655c62ddc4b9a61811 (diff)
downloadisl-0ba619853425ee1f76eaba22a8421f639141d84c.tar.gz
isl-0ba619853425ee1f76eaba22a8421f639141d84c.tar.bz2
isl-0ba619853425ee1f76eaba22a8421f639141d84c.zip
ax_submodule.m4: don't let --with-module conflict with --with-module-prefix=
Diffstat (limited to 'm4')
-rw-r--r--m4/ax_submodule.m44
1 files changed, 2 insertions, 2 deletions
diff --git a/m4/ax_submodule.m4 b/m4/ax_submodule.m4
index 637b4a94..7cf89957 100644
--- a/m4/ax_submodule.m4
+++ b/m4/ax_submodule.m4
@@ -22,13 +22,13 @@ if test "x$with_$1_prefix" != "x" -a "x$with_$1_exec_prefix" = "x"; then
with_$1_exec_prefix=$with_$1_prefix
fi
if test "x$with_$1_prefix" != "x" -o "x$with_$1_exec_prefix" != "x"; then
- if test "x$with_$1" != "x" -a "x$with_$1" != "xsystem"; then
+ if test "x$with_$1" != "x" -a "x$with_$1" != "xyes" -a "x$with_$1" != "xsystem"; then
AC_MSG_ERROR([Setting $with_$1_prefix implies use of system $1])
fi
with_$1="system"
fi
if test "x$with_$1_builddir" != "x"; then
- if test "x$with_$1" != "x" -a "x$with_$1" != "xbuild"; then
+ if test "x$with_$1" != "x" -a "x$with_$1" != "xyes" -a "x$with_$1" != "xbuild"; then
AC_MSG_ERROR([Setting $with_$1_builddir implies use of build $1])
fi
with_$1="build"