quiet down CVS ouput
diff --git a/releng.wtpbuilder/components/wst-sdk/customTargets.xml b/releng.wtpbuilder/components/wst-sdk/customTargets.xml
index 279d67c..74ee03a 100644
--- a/releng.wtpbuilder/components/wst-sdk/customTargets.xml
+++ b/releng.wtpbuilder/components/wst-sdk/customTargets.xml
@@ -2,6 +2,8 @@
name="Build specific targets and properties"
default="noDefault">
+ <property environment="env" />
+
<!-- ===================================================================== -->
<!-- Run a given ${target} on all elements being built -->
<!-- Add on <ant> task for each top level element being built. -->
@@ -111,7 +113,9 @@
cvsRoot="${mapCvsRoot}"
package="${cvsPackage}"
dest="${buildDirectory}/maps"
- tag="${mapVersionTag}" />
+ tag="${mapVersionTag}"
+ quiet="${env.CVS_QUIET}"
+ reallyquiet="${env.CVS_REALLY_QUIET}" />
<!--tag the map files project-->
<antcall target="tagMapFiles">
<param
@@ -126,7 +130,9 @@
<cvs
cvsRoot="${mapCvsRoot}"
dest="${buildDirectory}/maps"
- command="tag v${buildType}${timestamp}" />
+ command="tag v${buildType}${timestamp}"
+ quiet="${env.CVS_QUIET}"
+ reallyquiet="${env.CVS_REALLY_QUIET}" />
</target>
@@ -172,7 +178,9 @@
<!-- Steps to do before generating the build scripts. -->
<!-- ===================================================================== -->
<target name="postGenerate">
- <customizeAccessRules bundleDirectory="${buildDirectory}/plugins" defaultRules="+org/eclipse/wst/**/*, +org/eclipse/jst/**/*" />
+ <customizeAccessRules
+ bundleDirectory="${buildDirectory}/plugins"
+ defaultRules="+org/eclipse/wst/**/*, +org/eclipse/jst/**/*" />
</target>
<!-- ===================================================================== -->
<!-- Steps to do after generating the build scripts. -->
@@ -196,10 +204,10 @@
<!-- Steps to do after running the build.xmls for the elements being built. -->
<!-- ===================================================================== -->
<target name="postProcess">
- <condition property="logsAvailable">
+ <condition property="logsAvailable">
<istrue value="${javacVerbose}" />
</condition>
- <antcall target="gatherLogs" />
+ <antcall target="gatherLogs" />
</target>
@@ -262,7 +270,8 @@
<unzip
dest="${buildDirectory}/${buildLabel}/compilelogs"
overwrite="true">
- <fileset dir="${buildDirectory}/features/org.eclipse.wst.sdk">
+ <fileset
+ dir="${buildDirectory}/features/org.eclipse.wst.sdk">
<include name="**/*.log.zip" />
</fileset>
</unzip>
@@ -320,7 +329,8 @@
<!-- Default target -->
<!-- ===================================================================== -->
<target name="noDefault">
- <echo message="You must specify a target when invoking this file" />
+ <echo
+ message="You must specify a target when invoking this file" />
</target>
</project>