summaryrefslogtreecommitdiff
path: root/tomcat/tomcat.patch
diff options
context:
space:
mode:
authorRené Engelhard <rene@openoffice.org>2008-02-04 08:02:15 +0000
committerRené Engelhard <rene@openoffice.org>2008-02-04 08:02:15 +0000
commitad1f290140dbf7e58c01b4e127ce044a3d6f0638 (patch)
treed17b2f4f3b36474ae398cdac7943f7a449a702bf /tomcat/tomcat.patch
parentf2fe8c6aad0d44c85b1c22dbdff656c8a9d3fcb0 (diff)
Issue number:
Submitted by: Reviewed by: #i85726# don't ship binary-only jars, build them
Diffstat (limited to 'tomcat/tomcat.patch')
-rw-r--r--tomcat/tomcat.patch36
1 files changed, 36 insertions, 0 deletions
diff --git a/tomcat/tomcat.patch b/tomcat/tomcat.patch
new file mode 100644
index 000000000000..133b67d69fba
--- /dev/null
+++ b/tomcat/tomcat.patch
@@ -0,0 +1,36 @@
+*** /dev/null 2008-02-01 11:10:25.957002171 +0100
+--- misc/build/jakarta-tomcat-5.0.30-src/jakarta-servletapi-5/build.xml 2008-02-01 16:10:27.000000000 +0100
+***************
+*** 0 ****
+--- 1,31 ----
++ <project name="jsr152 and jsr154 in Debian" default="debuild" basedir=".">
++
++ <target name="debuild"
++ description="Build jsr154 and jsr152 for Debian (Default)">
++ <echo message="Building Servlet 2.4 API"/>
++ <ant antfile="jsr154/build.xml"
++ target="dist"
++ inheritAll="false"
++ />
++ <echo message="Building JSP 2.0 API"/>
++ <ant antfile="jsr152/build.xml"
++ target="dist"
++ inheritAll="false"
++ />
++ </target>
++
++ <target name="clean" description="Clean">
++ <echo message="Cleaning JSP 2.0 API"/>
++ <ant antfile="jsr152/build.xml"
++ target="clean"
++ inheritAll="false"
++ />
++ <echo message="Cleaning Servlet 2.4 API"/>
++ <ant antfile="jsr154/build.xml"
++ target="clean"
++ inheritAll="false"
++ />
++ <delete dir="tmp"/>
++ </target>
++
++ </project>