I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 34289959 authored by zzz's avatar zzz
Browse files

Build: Fix broken build from scratch in jetty build.xml

parent ca3f9963
No related branches found
No related tags found
No related merge requests found
......@@ -50,6 +50,16 @@
<available file="${jetty.filename}" type="file" />
</or>
</condition>
<condition property="verified.already" >
<or>
<istrue value="${with-libjetty8-java}" />
<istrue value="${jetty.zip.extracted}" />
<and>
<available file="${jetty.filename}" />
<uptodate property="foo.bar.baz" srcfile="${jetty.filename}" targetfile="${verified.filename}" />
</and>
</or>
</condition>
</target>
<!--
......@@ -80,17 +90,6 @@
<get src="${jetty.url}" verbose="true" dest="${jetty.filename}" />
</target>
<condition property="verified.already" >
<or>
<istrue value="${with-libjetty8-java}" />
<istrue value="${jetty.zip.extracted}" />
<and>
<available file="${jetty.filename}" />
<uptodate property="foo.bar.baz" srcfile="${jetty.filename}" targetfile="${verified.filename}" />
</and>
</or>
</condition>
<target name="verifyJettylib" depends="fetchJettylib" unless="verified.already" >
<condition property="jetty.zip.verified" >
<checksum file="${jetty.filename}" algorithm="SHA" property="${jetty.sha1}" />
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment