mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
38 lines
1.5 KiB
Diff
38 lines
1.5 KiB
Diff
--- a/build.xml (revision 597)
|
|
+++ a/build.xml (working copy)
|
|
@@ -212,7 +212,7 @@
|
|
</propertyfile>
|
|
</target>
|
|
|
|
- <target name="compile" depends="prepare, resolve-compile" description="main compilation">
|
|
+ <target name="compile" depends="prepare" description="main compilation">
|
|
<javac srcdir="${src}" destdir="${build.classes}" debug="yes" includeantruntime="false">
|
|
<include name="**/*.java"/>
|
|
<classpath refid="classpath"/>
|
|
@@ -219,7 +219,7 @@
|
|
</javac>
|
|
</target>
|
|
|
|
- <target name="compile.tests" depends="prepare, resolve-test" description="test compilation">
|
|
+ <target name="compile.tests" depends="prepare" description="test compilation">
|
|
<javac srcdir="${test}" destdir="${build.test-classes}" debug="yes" includeantruntime="false">
|
|
<include name="**/*.java"/>
|
|
<classpath refid="test.classpath"/>
|
|
@@ -324,7 +324,7 @@
|
|
</target>
|
|
|
|
<!-- Main -->
|
|
- <target name="build" depends="compile,compile.tests,run.tests">
|
|
+ <target name="build" depends="compile">
|
|
<copy todir="${build.classes}">
|
|
<fileset dir="${resources}">
|
|
<include name="*.properties"/>
|
|
@@ -349,7 +349,7 @@
|
|
ignoreerrors="true"/>
|
|
</target>
|
|
|
|
- <target name="run.func-tests" depends="compile,compile.tests,obtain-test-input-files" description="Run the functional tests">
|
|
+ <target name="run.func-tests" depends="compile,compile.tests" description="Run the functional tests">
|
|
<mkdir dir="tmp/report"/>
|
|
<junit printsummary="yes" failureproperty="junit.failure" forkmode="once">
|
|
|