From 30fd715fc200aec407c6d8595298df2782136d37 Mon Sep 17 00:00:00 2001 From: Sworddragon Date: Sun, 14 Nov 2010 12:51:51 +0100 Subject: [PATCH] Cleaned up bam.lua a bit --- bam.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bam.lua b/bam.lua index 79b72944a..f1df62fa0 100644 --- a/bam.lua +++ b/bam.lua @@ -73,7 +73,7 @@ function Dat2c(datafile, sourcefile, arrayname) AddJob( sourcefile, "dat2c " .. PathFilename(sourcefile) .. " = " .. PathFilename(datafile), - Script("scripts/safewrapper.py") .. " \"" .. Script("scripts/dat2c.py").. "\" " .. sourcefile .. " " .. datafile .. " " .. arrayname + Script("scripts/dat2c.py").. "\" " .. sourcefile .. " " .. datafile .. " " .. arrayname ) AddDependency(sourcefile, datafile) return sourcefile @@ -84,7 +84,7 @@ function ContentCompile(action, output) AddJob( output, action .. " > " .. output, - --Script("scripts/safewrapper.py") .. " \"" .. Script("datasrc/compile.py") .. "\" ".. Path(output) .. " " .. action + --Script("datasrc/compile.py") .. "\" ".. Path(output) .. " " .. action Script("datasrc/compile.py") .. " " .. action .. " > " .. Path(output) ) AddDependency(output, Path("datasrc/content.py")) -- do this more proper