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:
parent
c167ba0976
commit
177ee8cfb2
1 changed files with 5 additions and 2 deletions
|
@ -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" />
|
||||
|
|
Loading…
Add table
Reference in a new issue