diff options
author | xue <> | 2006-06-19 04:02:15 +0000 |
---|---|---|
committer | xue <> | 2006-06-19 04:02:15 +0000 |
commit | 551cbab5c5921acfa23b1abe6dbac40808cc5508 (patch) | |
tree | 806d5d36cc6834188a90879ec111bd017911695b | |
parent | 2664ae55742f7b05f29397698fc43ee64357b4f1 (diff) |
fixed an issue about CHM generation.
-rw-r--r-- | build.xml | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -190,7 +190,12 @@ <include name="**/**" /> </fileset> </move> - <move file="${build.doc.dir}/manual/CHMdefaultConverter/documentation.chm" todir="${build.src.dir}/docs" /> + <if> + <equals arg1="${prado.winbuild}" arg2="true"/> + <then> + <move file="${build.doc.dir}/manual/CHMdefaultConverter/documentation.chm" tofile="${build.src.dir}/docs/manual.chm" /> + </then> + </if> <echo>Generating compressed distribution files...</echo> <if> |