From c4149f7b55c0680037986524cf8fe81816cbabfb Mon Sep 17 00:00:00 2001 From: LexManos Date: Sat, 11 Aug 2012 16:03:33 -0700 Subject: [PATCH] Added missing quotes around compile command. --- fml/install/fml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fml/install/fml.py b/fml/install/fml.py index 2d6d9a448..cde365b0a 100644 --- a/fml/install/fml.py +++ b/fml/install/fml.py @@ -157,7 +157,7 @@ def setup_fml(fml_dir, mcp_dir): os.makedirs(binDir) #Compile AccessTransformer - forkcmd = ('%s -Xlint:-options -deprecation -g -source 1.6 -target 1.6 -classpath "{classpath}" -sourcepath {sourcepath} -d {outpath} {target}' % self.cmdjavac).format( + forkcmd = ('%s -Xlint:-options -deprecation -g -source 1.6 -target 1.6 -classpath "{classpath}" -sourcepath "{sourcepath}" -d "{outpath}" "{target}"' % self.cmdjavac).format( classpath=os.pathsep.join(['.', os.path.join(mcp_dir, 'lib', '*')]), sourcepath=os.path.join(fml_dir, 'common'), outpath=os.path.join(fml_dir, 'bin'), target=os.path.join(fml_dir, 'common', 'cpw', 'mods', 'fml', 'common', 'asm', 'transformers', 'AccessTransformer.java')) #print forkcmd