# HG changeset patch # User Roland Schatz # Date 1364394134 -3600 # Node ID 67f19ede48911bd8484d59e1b6b62d8535357029 # Parent 8a526d8b460453457974d1fa03a4f873acb5c9cd mx: Use correct working directory in eclipse builders. diff -r 8a526d8b4604 -r 67f19ede4891 mxtool/mx.py --- a/mxtool/mx.py Wed Mar 27 14:35:10 2013 +0100 +++ b/mxtool/mx.py Wed Mar 27 15:22:14 2013 +0100 @@ -2307,7 +2307,7 @@ launchOut.element('stringAttribute', {'key' : 'org.eclipse.ui.externaltools.ATTR_RUN_BUILD_KINDS', 'value': 'auto,full,incremental'}) launchOut.element('stringAttribute', {'key' : 'org.eclipse.ui.externaltools.ATTR_TOOL_ARGUMENTS', 'value': mxCommand}) launchOut.element('booleanAttribute', {'key' : 'org.eclipse.ui.externaltools.ATTR_TRIGGERS_CONFIGURED','value': 'true'}) - launchOut.element('stringAttribute', {'key' : 'org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY', 'value': baseDir}) + launchOut.element('stringAttribute', {'key' : 'org.eclipse.ui.externaltools.ATTR_WORKING_DIRECTORY', 'value': p.suite.dir}) launchOut.close('launchConfiguration')