1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
From: James Pages <james.page@canonical.com>
Date: Mon, 27 Sep 2021 16:45:13 +0200
Subject: Disable usage of embedded library copies
Forwarded: no
Last-Update: 2011-05-16
---
build.xml | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/build.xml
+++ b/build.xml
@@ -1015,7 +1015,7 @@
</copy>
</target>
- <target name="compile" depends="download-compile,validate">
+ <target name="compile" depends="setup-bnd,validate">
<!-- Compile internal server components -->
<javac srcdir="java" destdir="${tomcat.classes}"
debug="${compile.debug}"
@@ -1514,9 +1514,9 @@
<target name="deploy" depends="package,build-docs,build-tomcat-jdbc,compile-webapp-examples,deploy-webapps"
description="Default. Builds a working Tomcat instance">
-
+<!--
<copy tofile="${tomcat.build}/bin/commons-daemon.jar" file="${commons-daemon.jar}" />
-
+-->
<!-- Copy scripts -->
<copy todir="${tomcat.build}/bin">
<fileset dir="bin">
|