diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-11-17 08:15:15 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-11-17 08:15:15 +0000 |
commit | 75560f958fd85d4ca867b075c297a90ec444d452 (patch) | |
tree | a3a1fdf0ee63726c6bc55838bc3428046e81ac9e | |
parent | d5917f88f8cc002a259078a20898d02288a948ff (diff) | |
download | xmlgraphics-fop-75560f958fd85d4ca867b075c297a90ec444d452.tar.gz xmlgraphics-fop-75560f958fd85d4ca867b075c297a90ec444d452.zip |
Make docs target work under Windows.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@345209 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | build.xml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1034,10 +1034,13 @@ NOTE: <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> <!-- =================================================================== --> |