diff options
author | Glen Stampoultzis <glens@apache.org> | 2002-03-20 12:35:26 +0000 |
---|---|---|
committer | Glen Stampoultzis <glens@apache.org> | 2002-03-20 12:35:26 +0000 |
commit | 50d32856b6760008ed8640c755d32796f8fcb3c8 (patch) | |
tree | b5d9875b3549ed684939e8dbb268fc879db662a6 /tools | |
parent | b6ae88d81c0591c85ce219e6422c8659011cb40c (diff) | |
download | poi-50d32856b6760008ed8640c755d32796f8fcb3c8.tar.gz poi-50d32856b6760008ed8640c755d32796f8fcb3c8.zip |
Ryan's patch applied. Thanks Ryan!
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@352257 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'tools')
-rw-r--r-- | tools/centipede/targets/preinit.xtarget | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/tools/centipede/targets/preinit.xtarget b/tools/centipede/targets/preinit.xtarget index a3896926cc..6fb6325edc 100644 --- a/tools/centipede/targets/preinit.xtarget +++ b/tools/centipede/targets/preinit.xtarget @@ -14,7 +14,11 @@ <property name="build.compiler.pedantic" value="false"/> <property name="build.compiler.depend" value="true"/> <property name="build.compiler.fulldepend" value="true"/> - + + <!-- Temporary fix. Longer term solution to be discussed. --> + <property name="build.root" value="./build"/> + + <!-- =================================================================== --> <!-- Indentify Classpath --> <!-- =================================================================== --> @@ -44,7 +48,7 @@ <include name="*.jar"/> </fileset> <!-- FIXME : how to build a path that references a property set in 'init' target ? --> - <pathelement path="./build/jakarta-poi/classes"/> + <pathelement path="${build.root}/jakarta-poi/classes"/> </path> <path id="scratchpad.classpath"> @@ -61,7 +65,7 @@ <include name="*.jar"/> </fileset> <!-- FIXME : how to build a path that references a property set in 'init' target ? --> - <pathelement path="./build/jakarta-poi/classes"/> + <pathelement path="${build.root}/jakarta-poi/classes"/> </path> <path id="contrib.classpath"> @@ -78,7 +82,7 @@ <include name="*.jar"/> </fileset> <!-- FIXME : how to build a path that references a property set in 'init' target ? --> - <pathelement path="./build/jakarta-poi/classes"/> + <pathelement path="${build.root}/jakarta-poi/classes"/> </path> |