Browse Source

Correct pointer to Antidote, submitted by Larry Shatzer

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@275222 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 21 years ago
parent
commit
b8fe8d10ba
2 changed files with 12 additions and 4 deletions
  1. +1
    -1
      src/antidote/WHAT-IS-THIS-P
  2. +11
    -3
      src/etc/testcases/taskdefs/optional/dotnet.xml

+ 1
- 1
src/antidote/WHAT-IS-THIS-P View File

@@ -1,5 +1,5 @@
This /used/ to be the home of Antidote, the GUI for Ant. It has moved
(or rather, graduate) to the cvs module jakarta-ant-antidote, and must
(or rather, graduate) to the cvs module ant-antidote, and must
be retrieved separately from Ant, but can be found in the same place you found
source version of Ant.



+ 11
- 3
src/etc/testcases/taskdefs/optional/dotnet.xml View File

@@ -71,6 +71,14 @@
</or>
</condition>
<echo> dotnetapps.found=${dotnetapps.found}</echo>

<condition property="mono.executable" value="mono">
<or>
<available file="mono" filepath="${env.PATH}" />
<available file="mono.exe" filepath="${env.PATH}" />
</or>
</condition>
<property name="mono.executable" value="mint"/>
</target>
<target name="validate" depends="probe_for_apps">
@@ -115,7 +123,7 @@
</csc>
<available property="app.created" file="${testCSC.exe}"/>
<fail unless="app.created">No app ${testCSC.exe} created</fail>
<exec executable="mono" failonerror="true">
<exec executable="${mono.executable}" failonerror="true">
<arg value="${testCSC.exe}"/>
</exec>
<delete file="${testCSC.exe}"/>
@@ -153,7 +161,7 @@
</csc>
<available property="app.created" file="${testCSC.exe}"/>
<fail unless="app.created">No app ${testCSC.exe} created</fail>
<exec executable="mono" failonerror="true">
<exec executable="${mono.execuatble}" failonerror="true">
<arg value="${testCSC.exe}"/>
</exec>
<delete file="${testCSC.exe}"/>
@@ -232,7 +240,7 @@
</csc>
<available property="refapp.created" file="${testCscReferences.exe}"/>
<fail unless="refapp.created">No app ${testCscReferences.exe} created</fail>
<exec executable="mono" failonerror="true">
<exec executable="${mono.executable}" failonerror="true">
<arg value="${testCscReferences.exe}"/>
</exec>
</target>


Loading…
Cancel
Save