Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2011-09-14 17:27:15 +0000
committerAndrew Niefer2011-09-14 17:27:15 +0000
commite5b0d41c82a7af8d379250214913ce1301f87bcc (patch)
tree54baea40b232e98e7a39584bd1e62c6eb34e5051
parent400d72a6778bc0e32ee0c081b8bf65ae49f6405a (diff)
downloadrt.equinox.framework-e5b0d41c82a7af8d379250214913ce1301f87bcc.tar.gz
rt.equinox.framework-e5b0d41c82a7af8d379250214913ce1301f87bcc.tar.xz
rt.equinox.framework-e5b0d41c82a7af8d379250214913ce1301f87bcc.zip
fix problem parsing remote locations
-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