gramps: 5.2.3 -> 5.2.4, move to pkgs/by-name (#374090)
[NixPkgs.git] / pkgs / applications / misc / mkgmap / splitter / build.xml.patch
blob1fb0a14ef4c3a4f4ffe582025dc6fc75c6416ddf
1 --- a/build.xml (revision 597)
2 +++ a/build.xml (working copy)
3 @@ -212,7 +212,7 @@
4 </propertyfile>
5 </target>
7 - <target name="compile" depends="prepare, resolve-compile" description="main compilation">
8 + <target name="compile" depends="prepare" description="main compilation">
9 <javac srcdir="${src}" destdir="${build.classes}" debug="yes" includeantruntime="false">
10 <include name="**/*.java"/>
11 <classpath refid="classpath"/>
12 @@ -219,7 +219,7 @@
13 </javac>
14 </target>
16 - <target name="compile.tests" depends="prepare, resolve-test" description="test compilation">
17 + <target name="compile.tests" depends="prepare" description="test compilation">
18 <javac srcdir="${test}" destdir="${build.test-classes}" debug="yes" includeantruntime="false">
19 <include name="**/*.java"/>
20 <classpath refid="test.classpath"/>
21 @@ -324,7 +324,7 @@
22 </target>
24 <!-- Main -->
25 - <target name="build" depends="compile,compile.tests,run.tests">
26 + <target name="build" depends="compile">
27 <copy todir="${build.classes}">
28 <fileset dir="${resources}">
29 <include name="*.properties"/>
30 @@ -349,7 +349,7 @@
31 ignoreerrors="true"/>
32 </target>
34 - <target name="run.func-tests" depends="compile,compile.tests,obtain-test-input-files" description="Run the functional tests">
35 + <target name="run.func-tests" depends="compile,compile.tests" description="Run the functional tests">
36 <mkdir dir="tmp/report"/>
37 <junit printsummary="yes" failureproperty="junit.failure" forkmode="once">