Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/org.eclipse.equinox.launcher.releng/build.xml')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml11
1 files changed, 9 insertions, 2 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index d9a180c61..7154b795b 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -47,6 +47,13 @@
</sequential>
</macrodef>
+ <target name="test" >
+ <parseLocation prefix="dir" location="aniefer@wsanieferlnx:/eclipse/staging/org.eclipse.equinox.executable/bin/win32/win32/x86" />
+ <echo message="user=${dir_user}" />
+ <echo message="machine=${dir_machine}"/>
+ <echo message="folder=${dir_folder}"/>
+ <echo message="user_machine=${dir_user_machine}"/>
+ </target>
<macrodef name="mkremote-task">
<attribute name="dir" />
<sequential>
@@ -82,14 +89,14 @@
</condition>
<loadresource property="@{prefix}_user" >
- <string value="@{prefix}_user_machine" />
+ <string value="${@{prefix}_user_machine}" />
<filterchain>
<replaceregex pattern="^([^@]*)@(.*)$" replace="\1" flags="g"/>
</filterchain>
</loadresource>
<loadresource property="@{prefix}_machine" >
- <string value="@{prefix}_user_machine" />
+ <string value="${@{prefix}_user_machine}" />
<filterchain>
<replaceregex pattern="^([^@]*)@(.*)$" replace="\2" flags="g"/>
</filterchain>

Back to the top