You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2005/11/17 09:15:20 UTC

svn commit: r345209 - /xmlgraphics/fop/trunk/build.xml

Author: jeremias
Date: Thu Nov 17 00:15:15 2005
New Revision: 345209

URL: http://svn.apache.org/viewcvs?rev=345209&view=rev
Log:
Make docs target work under Windows.

Modified:
    xmlgraphics/fop/trunk/build.xml

Modified: xmlgraphics/fop/trunk/build.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/build.xml?rev=345209&r1=345208&r2=345209&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/build.xml (original)
+++ xmlgraphics/fop/trunk/build.xml Thu Nov 17 00:15:15 2005
@@ -1034,10 +1034,13 @@
     <echo message="the FORREST_HOME environment variable is set (see http://forrest.apache.org/)"/>
     <echo message="FORREST_HOME = ${forrest.home}"/>
     -->
-    <echo message="Make sure you have a propper Forrest installation (see http://forrest.apache.org/)"/>
+    <echo message="Make sure you have a proper Forrest installation (see http://forrest.apache.org/)"/>
 
     <!--<antcall target="site"/>-->
-    <exec executable="forrest"/>
+    <condition property="forrest.call" value="forrest.bat" else="forrest">
+      <os family="windows"/>
+    </condition>
+    <exec executable="${forrest.call}"/>
   </target>
   
   <!-- =================================================================== -->



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org