From 5c6c8ef03e14f2f21f6a6c81c5f22452380d9c6e Mon Sep 17 00:00:00 2001 From: Sree Harsha Totakura Date: Thu, 7 Mar 2013 15:32:56 +0000 Subject: - fix --- configure.ac | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index db0b7fa12..35d831032 100644 --- a/configure.ac +++ b/configure.ac @@ -970,15 +970,15 @@ AC_ARG_ENABLE([ll], [AS_HELP_STRING([--enable-ll], [build GNUnet testbed for use with IBM LoadLeveler for running testbed on SuperMUC (default is NO)])], - [if `test "x$enable_ll" = "xno"` + [if test "x$enable_ll" = "xno" then - ll=false + ll=0 else - ll=true + ll=1 fi], - [ll=false]) + [ll=0]) AC_MSG_RESULT($enable_ll) -AM_CONDITIONAL([ENABLE_LL], [test "x$ll" = "xtrue"]) +AM_CONDITIONAL([ENABLE_LL], [test "x$ll" = "x1"]) AC_DEFINE_UNQUOTED([ENABLE_LL], [$ll], [Build with LL support]) # should 'make check' run tests? -- cgit v1.2.3