Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorArun Thondapu2015-04-27 08:02:53 +0000
committerArun Thondapu2015-04-27 08:02:53 +0000
commitd246db1ff19232d211254bf9e4b6c2f14ebac00b (patch)
tree6f89535dfe641a454d27610766ad4b81a4b64b98 /releng
parent46bd2d5fbec5903237e44b847c206610a3a13f50 (diff)
downloadrt.equinox.framework-d246db1ff19232d211254bf9e4b6c2f14ebac00b.tar.gz
rt.equinox.framework-d246db1ff19232d211254bf9e4b6c2f14ebac00b.tar.xz
rt.equinox.framework-d246db1ff19232d211254bf9e4b6c2f14ebac00b.zip
Bug 465333 - CLI arguments not taken into accountI20150427-0800
https://bugs.eclipse.org/bugs/show_bug.cgi?id=465333#c3 Fix the build.xml to not ignore eclipsec.exe while copying rebuilt Windows binaries to the hudson machine Change-Id: Ia554227be022cbc5185eb3f8c44cee6f56229949 Signed-off-by: Arun Thondapu <arunkumar.thondapu@in.ibm.com>
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.equinox.launcher.releng/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index cce6ebf06..20742e7dd 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -194,7 +194,7 @@
<condition property="mac_suffix" value="/Eclipse.app/Contents/MacOS" else="">
<equals arg1="macosx" arg2="${os}" />
</condition>
- <condition property="exe" value="eclipse.exe" else="eclipse">
+ <condition property="exe" value="eclipse*.exe" else="eclipse">
<or>
<equals arg1="${os}" arg2="win32"/>
</or>

Back to the top