Browse Source

Build should work without Forrest installed


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@291934 13f79535-47bb-0310-9956-ffa450edef68
pull/31/head
Christian Geisert 18 years ago
parent
commit
10c1e48eb5
1 changed files with 5 additions and 2 deletions
  1. 5
    2
      build.xml

+ 5
- 2
build.xml View File

@@ -188,7 +188,7 @@ list of possible build targets.
<!-- Importing Apache Forrest for building the docs -->
<property environment="env"/>
<property name="forrest.home" value="${env.FORREST_HOME}"/>
<import file="${env.FORREST_HOME}/main/forrest.build.xml"/>
<import file="${env.FORREST_HOME}/main/forrest.build.xml" optional="true"/>

<!-- =================================================================== -->
<!-- Initialization target -->
@@ -915,10 +915,13 @@ list of possible build targets.
<!-- =================================================================== -->
<!-- Creates the documentation -->
<!-- =================================================================== -->
<target name="docs" depends="site" description="Generates documentation">
<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}"/>

<antcall target="site"/>
</target>
<!-- =================================================================== -->

Loading…
Cancel
Save