1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-25 09:55:29 +02:00

Patch for Tom Tromey to make the unzip of the eclipse install optional.

This commit is contained in:
Doug Schaefer 2004-06-18 19:24:06 +00:00
parent c167ba0976
commit 177ee8cfb2

View file

@ -28,8 +28,7 @@
<property name="mailto" value="cdt-test-dev@eclipse.org"/>
</target>
<target name="zips" depends="init">
<unzip src="${eclipseZip}" dest="${buildDirectory}"/>
<target name="zips" depends="init,unzip">
<ant antfile="build.xml" dir="${pde.build.scripts}">
<property name="builder" value="${basedir}/platform" />
</ant>
@ -45,6 +44,10 @@
</condition>
</target>
<target name="unzip" depends="init" unless="dontUnzip">
<unzip src="${eclipseZip}" dest="${buildDirectory}"/>
</target>
<target name="test" depends="init" unless="hasErrors">
<ant antfile="build.xml" dir="${pde.build.scripts}">
<property name="builder" value="${basedir}/testing" />