From c214cdc54e955ff1a01c00b99b0d6bd20e8b6bcd Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Fri, 21 Oct 2011 17:31:03 +0100 Subject: [PATCH] Fix ./configure --disable-erlang. --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index ed538f5..c384c6e 100644 --- a/configure.ac +++ b/configure.ac @@ -897,8 +897,8 @@ AC_ARG_ENABLE([erlang], AS_HELP_STRING([--disable-erlang], [Disable Erlang language bindings]), [], [enable_erlang=yes]) -AS_IF([test "x$enable_erlang" != "xno"], - [ +# NB: Don't use AS_IF here: it doesn't work. +if test "x$enable_erlang" != "xno"; then ERLANG= AC_ERLANG_PATH_ERLC([no]) @@ -907,7 +907,7 @@ AS_IF([test "x$enable_erlang" != "xno"], [AC_MSG_FAILURE([Erlang erl_interface library not installed. Use --disable-erlang to disable.])]) AC_ERLANG_SUBST_LIB_DIR fi - ]) +fi AM_CONDITIONAL([HAVE_ERLANG], [test "x$ERLANG" != "xno" && test "x$ERLC" != "xno"]) dnl Check for Perl modules needed by Perl virt tools (virt-df, etc.) -- 1.8.3.1