diff options
author | Timo Sirainen <cras@irssi.org> | 2000-10-11 22:09:53 +0000 |
---|---|---|
committer | cras <cras@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2000-10-11 22:09:53 +0000 |
commit | ee8c26ba98eb9f141635f33e0a77c5645708a246 (patch) | |
tree | 2ef5162d928e2f49941fc43ba9ae82cd3810c639 | |
parent | 00f9af313b8b4a519cff26170a08ab3434a150e5 (diff) | |
download | irssi-ee8c26ba98eb9f141635f33e0a77c5645708a246.zip |
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
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
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="" |