You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beehive.apache.org by st...@apache.org on 2004/12/10 22:36:28 UTC

svn commit: r111549 - /incubator/beehive/trunk/build.xml

Author: steveh
Date: Fri Dec 10 13:36:25 2004
New Revision: 111549

URL: http://svn.apache.org/viewcvs?view=rev&rev=111549
Log:
'unless' should be 'if'!
(*If* Forrest is present, then build the docs.)
Modified:
   incubator/beehive/trunk/build.xml

Modified: incubator/beehive/trunk/build.xml
Url: http://svn.apache.org/viewcvs/incubator/beehive/trunk/build.xml?view=diff&rev=111549&p1=incubator/beehive/trunk/build.xml&r1=111548&p2=incubator/beehive/trunk/build.xml&r2=111549
==============================================================================
--- incubator/beehive/trunk/build.xml	(original)
+++ incubator/beehive/trunk/build.xml	Fri Dec 10 13:36:25 2004
@@ -206,14 +206,14 @@
         <echo>Ensuring Forrest present in directory: ${forrest.dir}</echo>
         <available file="${forrest.dir}" type="dir" property="forrest.present"/>
         <echo>forrest.present: ${forrest.present}</echo>
-        <echo>You must have Apache Forrest 0.6 installed to execute this target.  For instructions on installing Forrest 0.6, see the file BEEHIVE_HOME/Building.txt, the section called "Installation of Apache Forrest".</echo>
+        <echo>You must have Apache Forrest 0.6 installed to execute this target.  For instructions on installing Forrest 0.6, see the file beehive/trunk/Building.txt, the section called "Installation of Apache Forrest".</echo>
         <ant target="build-site"/>
         <ant dir="controls" target="docs" inheritAll="false"/>
         <ant dir="netui" target="docs" inheritAll="false"/>
         <ant dir="wsm" target="docs" inheritAll="false"/>
     </target>
    
-    <target name="build-site" unless="forrest.present">
+    <target name="build-site" if="forrest.present">
         <ant dir="docs" target="site"/> 
     </target>