Changeset 9357 in josm for trunk/build.xml


Ignore:
Timestamp:
2016-01-09T19:05:20+01:00 (8 years ago)
Author:
simon04
Message:

fix #12321 - Allow JOSM to be compiled outside of repository root directory

Regression of r9133.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r9330 r9357  
    648648    <target name="epsg-compile" depends="compile">
    649649        <mkdir dir="build2"/>
    650         <javac sourcepath="" srcdir="scripts"
     650        <javac sourcepath="" srcdir="scripts" failonerror="true"
    651651            destdir="build2" target="1.7" source="1.7" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8" classpath="build">
    652652        </javac>
     
    655655    <target name="epsg" depends="epsg-compile">
    656656        <touch file="${epsg.output}"/>
    657         <java classname="BuildProjectionDefinitions">
     657        <java classname="BuildProjectionDefinitions" failonerror="true">
    658658            <classpath>
    659659                <pathelement path="."/>
     
    661661                <pathelement path="build2"/>
    662662            </classpath>
     663            <arg value="${basedir}"/>
    663664        </java>
    664665    </target>
Note: See TracChangeset for help on using the changeset viewer.