From ee8c26ba98eb9f141635f33e0a77c5645708a246 Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Wed, 11 Oct 2000 22:09:53 +0000 Subject: [PATCH] Ignore --with-modules[=yes|no] - you're supposed to tell what modules to enable, not just say yes or no. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@731 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 615898be..24580404 100644 --- a/configure.in +++ b/configure.in @@ -83,7 +83,9 @@ AC_ARG_WITH(proxy, AC_ARG_WITH(modules, [ --with-modules Specify what modules to build in binary], - build_modules="$withval") + if test x$withval != xyes -a x$withval != xno; then + build_modules="$withval" + fi) if test "x$prefix" = "xNONE"; then PERL_LIB_DIR=""