[Vm-dev] [commit] r2467 - Fix linux configure for MT vm.

commits at squeakvm.org commits at squeakvm.org
Wed Jul 20 20:56:02 UTC 2011


Author: eliot
Date: 2011-07-20 13:56:01 -0700 (Wed, 20 Jul 2011)
New Revision: 2467

Modified:
   branches/Cog/platforms/unix/config/acinclude.m4
   branches/Cog/platforms/unix/config/configure
Log:
Fix linux configure for MT vm.


Modified: branches/Cog/platforms/unix/config/acinclude.m4
===================================================================
--- branches/Cog/platforms/unix/config/acinclude.m4	2011-07-20 18:46:38 UTC (rev 2466)
+++ branches/Cog/platforms/unix/config/acinclude.m4	2011-07-20 20:56:01 UTC (rev 2467)
@@ -144,7 +144,7 @@
 fi])
 
 AC_DEFUN([AC_GNU_INTERP],
-[if test "$cogit" = yes ; then INTERP="cointerp"; else INTERP="interp"; fi
+[if test -z "$INTERP" ; then if test "$cogit" = yes ; then INTERP="cointerp"; else INTERP="interp"; fi; fi
 AC_SUBST(INTERP)
 AC_PROG_AWK
 AC_MSG_CHECKING(whether we can compile gcc3x-$INTERP)

Modified: branches/Cog/platforms/unix/config/configure
===================================================================
--- branches/Cog/platforms/unix/config/configure	2011-07-20 18:46:38 UTC (rev 2466)
+++ branches/Cog/platforms/unix/config/configure	2011-07-20 20:56:01 UTC (rev 2467)
@@ -23751,7 +23751,7 @@
   echo "$as_me:$LINENO: result: \"$ac_optflags\"" >&5
 echo "${ECHO_T}\"$ac_optflags\"" >&6
 fi
-if test "$cogit" = yes ; then INTERP="cointerp"; else INTERP="interp"; fi
+if test -z "$INTERP" ; then if test "$cogit" = yes ; then INTERP="cointerp"; else INTERP="interp"; fi; fi
 
 for ac_prog in gawk mawk nawk awk
 do



More information about the Vm-dev mailing list