You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by st...@apache.org on 2002/12/01 04:56:07 UTC

cvs commit: jakarta-ant build.xml

stevel      2002/11/30 19:56:07

  Modified:    .        build.xml
  Log:
  fixing alignment and reporting of .net app probe
  
  Revision  Changes    Path
  1.336     +6 -7      jakarta-ant/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-ant/build.xml,v
  retrieving revision 1.335
  retrieving revision 1.336
  diff -u -r1.335 -r1.336
  --- build.xml	21 Nov 2002 10:06:12 -0000	1.335
  +++ build.xml	1 Dec 2002 03:56:07 -0000	1.336
  @@ -498,30 +498,29 @@
                      classpathref="classpath"/>
         </or>
       </condition>
  -
  -   <condition property="wsdl.found">
  +    <condition property="wsdl.found">
         <or>
           <available file="wsdl"     filepath="${env.PATH}"/>
           <available file="wsdl.exe" filepath="${env.PATH}"/>
           <available file="wsdl.exe" filepath="${env.Path}"/>
         </or>
       </condition>
  -   <echo level="verbose"> wsdl.found=${wsdl.found}</echo>
  -   <condition property="csc.found">
  +    <echo level="verbose"> wsdl.found=${wsdl.found}</echo>
  +    <condition property="csc.found">
         <or>
           <available file="csc"     filepath="${env.PATH}"/>
           <available file="csc.exe" filepath="${env.PATH}"/>
           <available file="csc.exe" filepath="${env.Path}"/>
         </or>
       </condition>
  -   <echo level="verbose"> csc.found=${csc.found}</echo>
  -   <condition property="dotnetapps.found">
  +    <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>
  +    <echo level="verbose"> dotnetapps.found=${dotnetapps.found}</echo>
   
       <available property="rhino.present"
                  classname="org.mozilla.javascript.Scriptable"
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>