about summary refs log tree commit diff
path: root/bam.lua
diff options
context:
space:
mode:
authorSworddragon <sworddragon2@aol.com>2010-11-14 12:51:51 +0100
committeroy <Tom_Adams@web.de>2010-11-16 17:49:03 +0100
commit30fd715fc200aec407c6d8595298df2782136d37 (patch)
tree43ddaafb42ceb17733684645f95ae1119da28f17 /bam.lua
parent96a1b130fa0aaea68e453c8e17cf8d3cbe097ae3 (diff)
downloadzcatch-30fd715fc200aec407c6d8595298df2782136d37.tar.gz
zcatch-30fd715fc200aec407c6d8595298df2782136d37.zip
Cleaned up bam.lua a bit
Diffstat (limited to 'bam.lua')
-rw-r--r--bam.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/bam.lua b/bam.lua
index 79b72944..f1df62fa 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