[vmkit-commits] [vmkit] r54445 - in /vmkit/trunk: autoconf/configure.ac configure

Nicolas Geoffray nicolas.geoffray at lip6.fr
Wed Aug 6 21:52:28 PDT 2008


Author: geoffray
Date: Wed Aug  6 23:52:27 2008
New Revision: 54445

URL: http://llvm.org/viewvc/llvm-project?rev=54445&view=rev
Log:
Remove a whitespace, which made the GC_FLAGS empty.


Modified:
    vmkit/trunk/autoconf/configure.ac
    vmkit/trunk/configure

Modified: vmkit/trunk/autoconf/configure.ac
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/autoconf/configure.ac?rev=54445&r1=54444&r2=54445&view=diff

==============================================================================
--- vmkit/trunk/autoconf/configure.ac (original)
+++ vmkit/trunk/autoconf/configure.ac Wed Aug  6 23:52:27 2008
@@ -180,7 +180,7 @@
 )
 
 if test "x$gc" = "xboehm";  then
-  GC_FLAGS ="-I$PWD/lib/Mvm/BoehmGC -DGC_THREADS"
+  GC_FLAGS="-I$PWD/lib/Mvm/BoehmGC -DGC_THREADS"
   AC_DEFINE([USE_GC_BOEHM], [1], [Using the boehm gc])
   AC_SUBST(GC_MMAP2, [0])
   AC_SUBST(GC_BOEHM, [1])

Modified: vmkit/trunk/configure
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/configure?rev=54445&r1=54444&r2=54445&view=diff

==============================================================================
--- vmkit/trunk/configure (original)
+++ vmkit/trunk/configure Wed Aug  6 23:52:27 2008
@@ -3885,7 +3885,7 @@
 
 
 if test "x$gc" = "xboehm";  then
-  GC_FLAGS ="-I$PWD/lib/Mvm/BoehmGC -DGC_THREADS"
+  GC_FLAGS="-I$PWD/lib/Mvm/BoehmGC -DGC_THREADS"
 
 cat >>confdefs.h <<\_ACEOF
 #define USE_GC_BOEHM 1
@@ -3952,9 +3952,7 @@
   fi
 fi
 
-
-
-if test "x$vmtype" = "xservice"; then
+ if test "x$vmtype" = "xservice"; then
   SERVICE_BUILD_TRUE=
   SERVICE_BUILD_FALSE='#'
 else
@@ -3962,9 +3960,7 @@
   SERVICE_BUILD_FALSE=
 fi
 
-
-
-if test "x$vmtype" = "xmulti"; then
+ if test "x$vmtype" = "xmulti"; then
   ISOLATE_BUILD_TRUE=
   ISOLATE_BUILD_FALSE='#'
 else





More information about the vmkit-commits mailing list