From 099ac36cbe079f1e1a6c808949a2da978c9118fb Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Wed, 24 Feb 2010 22:27:20 -0500 Subject: [PATCH] yet more ant tweaking --- build.xml | 2 +- mkbuildxml.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/build.xml b/build.xml index 20c755c..794587a 100644 --- a/build.xml +++ b/build.xml @@ -55,7 +55,7 @@ - + diff --git a/mkbuildxml.py b/mkbuildxml.py index 268d93d..55bffd3 100755 --- a/mkbuildxml.py +++ b/mkbuildxml.py @@ -115,7 +115,7 @@ class BuildXMLMaker(object): for as3 in sorted(self.targets['compc'].iterkeys()): rel_target = './' + as3.lstrip('./') as_swf = re.sub('(.*).as$', '\\1.swf', rel_target) - attrs = {'output': as_swf, 'source-path': '${basedir}'} + attrs = dict(output=as_swf) attrs.update(self.targets['compc'][as3]) ET.SubElement(self.build, 'compc', **attrs)