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.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/releng/org.eclipse.equinox.launcher.releng/build.xml b/releng/org.eclipse.equinox.launcher.releng/build.xml
index 87f499f63..629d4fa67 100644
--- a/releng/org.eclipse.equinox.launcher.releng/build.xml
+++ b/releng/org.eclipse.equinox.launcher.releng/build.xml
@@ -17,6 +17,8 @@
<property name="cvsLauncherBinaries" value="org.eclipse.equinox/framework/releng/org.eclipse.equinox.launcher.binaries" />
<property name="cvsTag" value="HEAD" />
+ <available file="${basedir}/launcher.properties" property="launcherProperties" value="${basedir}/launcher.properties" />
+
<!-- Macro for execing scp -->
<macrodef name="SCP">
<attribute name="dir" />
@@ -168,7 +170,11 @@
</condition>
</target>
- <target name="initProperties" >
+ <target name="loadProperties" if="launcherProperties" >
+ <propery file="${launcherProperties}" />
+ </target>
+
+ <target name="initProperties" depends="loadProperties" >
<property name="ws" value="${env.ws}"/>
<property name="os" value="${env.os}" />
<property name="arch" value="${env.arch}" />

Back to the top