improving build control
diff --git a/archive/releng.builder/tools/cruise/committer.xml b/archive/releng.builder/tools/cruise/committer.xml
index 113e82b..b90482a 100644
--- a/archive/releng.builder/tools/cruise/committer.xml
+++ b/archive/releng.builder/tools/cruise/committer.xml
@@ -38,29 +38,32 @@
<ant antfile="${wtpBuilder}" target="build" />
<ant antfile="${wtpBuilder}" target="site" />
<!-- upload what we have so far -->
- <property name="wtpbuilder.upload.properties.file"
- value="${basedir}/upload.properties" />
- <ant antfile="${wtpBuilder}" target="upload" />
+ <ant antfile="${wtpBuilder}" target="upload">
+ <property name="wtpbuilder.upload.properties.file"
+ value="${basedir}/upload.properties" />
+ </ant>
<!-- test and create test summary files -->
<ant antfile="${wtpBuilder}" target="test" />
<ant antfile="${wtpBuilder}" target="site" />
<!-- upload what we have so far -->
- <property name="wtpbuilder.upload.properties.file"
- value="${basedir}/upload.properties" />
- <ant antfile="${wtpBuilder}" target="upload" />
+ <ant antfile="${wtpBuilder}" target="upload">
+ <property name="wtpbuilder.upload.properties.file"
+ value="${basedir}/upload.properties" />
+ </ant>
<!-- create what-is-fixed summary files -->
<ant antfile="${wtpBuilder}" target="whatisfixed">
- <param name="wtpbuilder.whatisfixed.properties.file"
- value="${basedir}/whatisfixed.properties" />
+ <property name="wtpbuilder.whatisfixed.properties.file"
+ value="${basedir}/whatisfixed.properties" />
</ant>
<!-- upload final set of results -->
- <property name="wtpbuilder.upload.properties.file"
- value="${basedir}/upload.properties" />
- <ant antfile="${wtpBuilder}" target="upload" />
+ <ant antfile="${wtpBuilder}" target="upload">
+ <property name="wtpbuilder.upload.properties.file"
+ value="${basedir}/upload.properties" />
+ </ant>
</target>