gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r26353 - gnunet


From: gnunet
Subject: [GNUnet-SVN] r26353 - gnunet
Date: Thu, 7 Mar 2013 16:32:56 +0100

Author: harsha
Date: 2013-03-07 16:32:56 +0100 (Thu, 07 Mar 2013)
New Revision: 26353

Modified:
   gnunet/configure.ac
Log:
- fix

Modified: gnunet/configure.ac
===================================================================
--- gnunet/configure.ac 2013-03-07 14:25:10 UTC (rev 26352)
+++ gnunet/configure.ac 2013-03-07 15:32:56 UTC (rev 26353)
@@ -970,15 +970,15 @@
     [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?




reply via email to

[Prev in Thread] Current Thread [Next in Thread]