Changed premake.lua to work with mingw.

Implemented array operations, not perfect but ok for tonight. closes #89
This commit is contained in:
Tomas Lindquist Olsen
2008-10-13 23:19:32 +02:00
parent e76d8f25b4
commit 202c4f7bc2
11 changed files with 309 additions and 251 deletions

View File

@@ -31,7 +31,7 @@ TRIPLE = "";
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