summaryrefslogtreecommitdiff
path: root/build.xml
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-02-01 13:19:46 -0800
committerPaul Phillips <paulp@improving.org>2012-02-01 13:28:08 -0800
commitfbd5efe49cf23b446762dfa5026e8bac82ab04fc (patch)
tree5d70dd0e06194e376ec73b66ba0df149628bd504 /build.xml
parent1eebc520fc787297718d31c3e3a4fb6a244b1067 (diff)
downloadscala-fbd5efe49cf23b446762dfa5026e8bac82ab04fc.tar.gz
scala-fbd5efe49cf23b446762dfa5026e8bac82ab04fc.tar.bz2
scala-fbd5efe49cf23b446762dfa5026e8bac82ab04fc.zip
Fixing build string.
Version number turning up more than once. Looking at the situation I could only see the former mechanism as trouble. I deleted build.number and in ant am generating the build string only from tools/get-scala-revision. We may need to revisit when the time comes to build a release.
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml13
1 files changed, 4 insertions, 9 deletions
diff --git a/build.xml b/build.xml
index 0cb728c35f..57d2eed1c0 100644
--- a/build.xml
+++ b/build.xml
@@ -251,18 +251,13 @@ INITIALISATION
<os family="windows"/>
</condition>
- <exec osfamily="unix" executable="tools/get-scala-revision" outputproperty="git.describe" failifexecutionfails="false" />
- <exec osfamily="windows" executable="tools/get-scala-revision.bat" outputproperty="git.describe" failifexecutionfails="false" />
+ <!-- Generating version string -->
+ <exec osfamily="unix" executable="tools/get-scala-revision" outputproperty="version.number" failifexecutionfails="false" />
+ <exec osfamily="windows" executable="tools/get-scala-revision.bat" outputproperty="version.number" failifexecutionfails="false" />
<!-- some default in case something went wrong getting the revision -->
- <property name="git.describe" value="-unknown-"/>
+ <property name="version.number" value="-unknown-"/>
<property name="init.avail" value="yes"/>
- <!-- Generating version number -->
- <property file="${basedir}/build.number"/>
- <property
- name="version.number"
- value="${version.major}.${version.minor}.${version.patch}.${git.describe}"/>
-
<!-- And print-out what we are building -->
<echo message=" build time: ${time.human}" />
<echo message=" java version: ${java.vm.name} ${java.version}" />