https://issues.apache.org/bugzilla/show_bug.cgi?id=57502
Bug ID: 57502
Summary: [patch] patch for ant build.xml to ensure creating
compile-lib dir
Product: POI
Version: unspecified
Hardware: PC
OS: Linux
Status: NEW
Severity: normal
Priority: P2
Component: POI Overall
Assignee: [email protected]
Reporter: [email protected]
Currently ant build on new repo clone is broken if no `compile-lib` directory
exists. Ant fails when trying to download libs which should be placed there.
Patch:
diff --git a/build.xml b/build.xml
index 57ee345..e94fd8d 100644
--- a/build.xml
+++ b/build.xml
@@ -447,6 +447,7 @@ under the License.
<target name="fetch-jars" depends="check-jars" unless="jars.present"
description="Fetches needed JAR files from the Internet">
<mkdir dir="${main.lib}"/>
+ <mkdir dir="${compile.lib}"/>
<antcall target="downloadfile">
<param name="sourcefile" value="${main.commons-logging.url}"/>
<param name="destfile" value="${main.commons-logging.jar}"/>
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]