Browse Source

Make the src.dir property relative to the execution base directory without

a pseudo ${basedir} target (consistent with src.bin.dir).


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

+ 1
- 1
build.xml View File

@@ -13,7 +13,7 @@
<property name="ant.home" value="."/> <property name="ant.home" value="."/>
<property name="bin.dir" value="bin"/> <property name="bin.dir" value="bin"/>
<property name="src.bin.dir" value="src/bin"/> <property name="src.bin.dir" value="src/bin"/>
<property name="src.dir" value="${basedir}/src/main"/>
<property name="src.dir" value="src/main"/>
<property name="lib.dir" value="lib"/> <property name="lib.dir" value="lib"/>
<property name="docs.dir" value="docs"/> <property name="docs.dir" value="docs"/>
<property name="build.dir" value="../build/ant"/> <property name="build.dir" value="../build/ant"/>


Loading…
Cancel
Save