From: Ken Hornstein Date: Thu, 16 Dec 2010 18:11:17 +0000 (-0500) Subject: All of the arguments to AC_ARG_ENABLE need to be quoted, otherwise the X-Git-Tag: mmh-start~11 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=16fe088f7a4b204f3af67a1a378796b1bfe96694 All of the arguments to AC_ARG_ENABLE need to be quoted, otherwise the last action doesn't make it into the configure script. --- diff --git a/configure.in b/configure.in index d68f4f1..e93e173 100644 --- a/configure.in +++ b/configure.in @@ -53,8 +53,7 @@ AC_ARG_ENABLE(masquerade, masquerade="draft_from mmailid username_extension" else masquerade="$enable_masquerade" - fi], - masquerade="draft_from mmailid username_extension") + fi], [masquerade="draft_from mmailid username_extension"]) AC_SUBST(masquerade)dnl dnl Do you want mhe support?