Browse Source

fixing alignment and reporting of .net app probe

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273594 13f79535-47bb-0310-9956-ffa450edef68
master
Steve Loughran 22 years ago
parent
commit
a6be151ffd
1 changed files with 6 additions and 7 deletions
  1. +6
    -7
      build.xml

+ 6
- 7
build.xml View File

@@ -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"


Loading…
Cancel
Save