diff premake.lua @ 703:06576ece1a1b

Changed premake.lua to work with mingw. Implemented array operations, not perfect but ok for tonight. closes #89
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Mon, 13 Oct 2008 23:19:32 +0200
parents ed9a9e6dd1cc
children eed2de0c67a0
line wrap: on
line diff
--- a/premake.lua	Mon Oct 13 21:08:11 2008 +0200
+++ b/premake.lua	Mon Oct 13 23:19:32 2008 +0200
@@ -31,7 +31,7 @@
 if options["target-override"] then
     TRIPLE = options["target-override"]
 else
-    local p = io.popen("./config.guess")
+    local p = io.popen("sh config.guess")
     TRIPLE = p:read()
 end