Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Davis2012-02-03 23:03:04 +0000
committerMatthew Davis2012-02-03 23:03:04 +0000
commitd35681aa7fb02db3352c00dcef9d3785d8237903 (patch)
tree7f928f306189bc202319b1137a124814d8a5c152
parent61609ee072f3b292ab7b91b16438864d79682db0 (diff)
downloadorg.eclipse.stem-d35681aa7fb02db3352c00dcef9d3785d8237903.tar.gz
org.eclipse.stem-d35681aa7fb02db3352c00dcef9d3785d8237903.tar.xz
org.eclipse.stem-d35681aa7fb02db3352c00dcef9d3785d8237903.zip
updates to build
git-svn-id: http://dev.eclipse.org/svnroot/technology/org.eclipse.stem/trunk@2736 92a21009-5b66-0410-b83a-dc787c41c6e9
-rw-r--r--releng/org.eclipse.stem.releng/build.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/releng/org.eclipse.stem.releng/build.xml b/releng/org.eclipse.stem.releng/build.xml
index aa8b03be7..616f9bbfd 100644
--- a/releng/org.eclipse.stem.releng/build.xml
+++ b/releng/org.eclipse.stem.releng/build.xml
@@ -205,24 +205,24 @@
<target name="set.build.label.nightly" if="is.nightly.build">
<echo>Nightly Build</echo>
<property name="buildQualifierPrefix" value="N" />
- <property name="buildLabelSuffix">${majorVersion}.${buildQualifierPrefix}${buildDate}</property>
+ <property name="buildLabelSuffix" value="${majorVersion}.${buildQualifierPrefix}${buildDate}" />
</target>
<target name="set.build.label.integration" if="is.integration.build">
<echo>Integration Build</echo>
<property name="buildQualifierPrefix" value="I" />
- <property name="buildLabelSuffix">${majorVersion}.${buildQualifierPrefix}${buildDate}</property>
+ <property name="buildLabelSuffix" value="${majorVersion}.${buildQualifierPrefix}${buildDate}" />
</target>
<target name="set.build.label.stable" if="is.stable.build">
<echo>Stable Build</echo>
<property name="buildQualifierPrefix" value="M" />
- <property name="buildLabelSuffix">${majorVersion}${buildQualifier}</property>
+ <property name="buildLabelSuffix" value="${majorVersion}${buildQualifier}" />
</target>
<target name="set.build.label.release" if="is.release.build">
<echo>Release Build</echo>
- <property name="buildLabelSuffix">${majorVersion}</property>
+ <property name="buildLabelSuffix" value="${majorVersion}" />
</target>
</project> \ No newline at end of file

Back to the top