Browse Source

The previous fix was not sufficient when executing Ant's build.xml as a

subtask.  Apparently the base directory for Javadoc is set to the "outer"
Ant's base directory, instead of the "inner" one.  This fix works around
that problem by relying on the (undocumented?) fact that the "basedir"
property is set automatically by Ant.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@267661 13f79535-47bb-0310-9956-ffa450edef68
master
Craig R. McClanahan 25 years ago
parent
commit
fd5bec8196
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      build.xml

+ 1
- 1
build.xml View File

@@ -98,7 +98,7 @@
<target name="javadocs" depends="prepare">
<mkdir dir="${build.javadocs}"/>
<javadoc packagenames="${packages}"
sourcepath="${src.dir}"
sourcepath="${basedir}/${src.dir}"
destdir="${build.javadocs}"
author="true"
version="true"


Loading…
Cancel
Save