Debian: Fix patches for Jetty 9.3.28 (ticket #2098)

Add xenial patch to ant test target
This commit is contained in:
zzz
2020-05-27 17:19:16 +00:00
parent 03b1a4dfc0
commit 9b5e4373d4
3 changed files with 52 additions and 91 deletions

View File

@@ -2592,16 +2592,26 @@
</target>
<target name="debcheckpatch">
<echo message="Checking debian/patches/0001-path-substitution.patch" />
<exec executable="patch" failonerror="true" input="debian/patches/0001-path-substitution.patch" >
<arg value="--dry-run" />
<arg value="-F0" />
<arg value="-p1" />
</exec>
<echo />
<echo message="Checking debian/patches/0002-jetty-compatibility.patch" />
<exec executable="patch" failonerror="true" input="debian/patches/0002-jetty-compatibility.patch" >
<arg value="--dry-run" />
<arg value="-F0" />
<arg value="-p1" />
</exec>
<echo />
<echo message="Checking debian-alt/xenial/patches/0002-jetty-old-api.patch" />
<exec executable="patch" failonerror="true" input="debian-alt/xenial/patches/0002-jetty-old-api.patch" >
<arg value="--dry-run" />
<arg value="-F0" />
<arg value="-p1" />
</exec>
</target>