[llvm-commits] [vmkit] r50099 - /vmkit/trunk/configure.ac
Nicolas Geoffray
nicolas.geoffray at lip6.fr
Tue Apr 22 01:11:57 PDT 2008
Author: geoffray
Date: Tue Apr 22 03:11:57 2008
New Revision: 50099
URL: http://llvm.org/viewvc/llvm-project?rev=50099&view=rev
Log:
If only I knew autothings better...
Modified:
vmkit/trunk/configure.ac
Modified: vmkit/trunk/configure.ac
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/configure.ac?rev=50099&r1=50098&r2=50099&view=diff
==============================================================================
--- vmkit/trunk/configure.ac (original)
+++ vmkit/trunk/configure.ac Tue Apr 22 03:11:57 2008
@@ -222,17 +222,17 @@
AC_ARG_WITH(vm-type,
[AS_HELP_STRING(--with-vm-type=something,
[VM type ('single' 'multi' or 'service')])],
- [[vm=$withval]],
+ [[vmtype=$withval]],
[[ echo Using single as vm type.
- vm-type=single
+ vmtype=single
]]
)
-if test "x${vm-type}" = "xmulti"; then
+if test "x$vmtype" = "xmulti"; then
CFLAGS="$CFLAGS -DMULTIPLE_VM"
CXXFLAGS="$CXXFLAGS -DMULTIPLE_VM"
else
- if test "x${vm-type}" = "xservice"; then
+ if test "x$vmtype" = "xservice"; then
CFLAGS="$CFLAGS -DMULTIPLE_VM -DSERVICE_GC -DMULTIPLE_GC -DSERVICE_VM"
CXXFLAGS="$CXXFLAGS -DMULTIPLE_VM -DSERVICE_GC -DMULTIPLE_GC -DSERVICE_VM"
fi
More information about the llvm-commits
mailing list