]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Fix to "docs" target. FORREST_HOME no longer needs to be in your PATH for the target...
authorAdrian Cumiskey <acumiskey@apache.org>
Wed, 21 Jul 2010 18:06:25 +0000 (18:06 +0000)
committerAdrian Cumiskey <acumiskey@apache.org>
Wed, 21 Jul 2010 18:06:25 +0000 (18:06 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@966339 13f79535-47bb-0310-9956-ffa450edef68

build.xml

index b833f573ffa54e4cc4558da5e7d5bb55a9cbac6f..65fe4b69d2419540863c5c242704aa3c9f5a743f 100644 (file)
--- a/build.xml
+++ b/build.xml
@@ -1208,16 +1208,12 @@ NOTE:
 <!-- =================================================================== -->
   <target name="docs" description="Generates documentation">
     <echo message="Building documentation with Forrest..."/>
-<!--
-    <echo message="Make sure that you have installed Apache Forrest and"/>
-    <echo message="the FORREST_HOME environment variable is set (see http://forrest.apache.org/)"/>
-    <echo message="FORREST_HOME = ${forrest.home}"/>
-    -->
+    <echo message="FORREST_HOME = ${env.FORREST_HOME}"/>
     <echo message="Make sure you have a proper Forrest installation (see http://forrest.apache.org/)"/>
     <condition property="forrest.call" value="forrest.bat" else="forrest">
       <os family="windows"/>
     </condition>
-    <exec executable="${forrest.call}"/>
+    <exec executable="${env.FORREST_HOME}/bin/${forrest.call}"/>
   </target>
 <!-- =================================================================== -->
 <!-- Creates the distribution                                            -->