stevel 02/04/11 21:39:46
Modified: . build.xml
Log:
info on dotnet availability tests only printed in verbose mode.
Revision Changes Path
1.288 +3 -2 jakarta-ant/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-ant/build.xml,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- build.xml 11 Apr 2002 23:35:45 -0000 1.287
+++ build.xml 12 Apr 2002 04:39:46 -0000 1.288
@@ -457,7 +457,7 @@
<available file="wsdl.exe" filepath="${env.Path}" />
</or>
</condition>
- <echo> wsdl.found=${wsdl.found}</echo>
+ <echo level="verbose"> wsdl.found=${wsdl.found}</echo>
<condition property="csc.found">
<or>
<available file="csc" filepath="${env.PATH}" />
@@ -465,13 +465,14 @@
<available file="csc.exe" filepath="${env.Path}" />
</or>
</condition>
- <echo> csc.found=${csc.found}</echo>
+ <echo level="verbose"> csc.found=${csc.found}</echo>
<condition property="dotnetapps.found">
<and>
<isset property="csc.found"/>
<isset property="wsdl.found"/>
</and>
</condition>
+ <echo level="verbose"> csc.found=${csc.found}</echo>
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>