changeset 17259:eff18e262a13

fix jdt build on windows/cygwin (2)
author Bernhard Urban <bernhard.urban@jku.at>
date Mon, 29 Sep 2014 20:13:17 -0700
parents f1f7b796874f
children 222b60e248ba
files mxtool/mx.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Mon Sep 29 20:48:37 2014 +0200
+++ b/mxtool/mx.py	Mon Sep 29 20:13:17 2014 -0700
@@ -2422,9 +2422,9 @@
                         with open(jdtPropertiesTmp, 'w') as fp:
                             fp.write(content)
                         toBeDeleted.append(jdtPropertiesTmp)
-                        jdtArgs += ['-properties', jdtPropertiesTmp]
+                        jdtArgs += ['-properties', _tpU2W(jdtPropertiesTmp)]
                     else:
-                        jdtArgs += ['-properties', jdtProperties]
+                        jdtArgs += ['-properties', _tpU2W(jdtProperties)]
                 jdtArgs.append('@' + _tpU2W(argfile.name))
 
                 run_java(jdtVmArgs + jdtArgs)