Are the build.xml files automatically generated from some other files?

Many of them are not seeing the ROYALE_COMPILER_HOME environment variable, so I 
have to manually adjust this:


    <target name="check-transpiler-home"
        description="Set ROYALE_COMPILER_HOME to point at the cross-compiler.">

        <available file="${ROYALE_HOME}/js/lib/jsc.jar"
        type="file"
        property="ROYALE_COMPILER_HOME"
        value="${ROYALE_HOME}/js"/>


to this:


    <target name="check-transpiler-home"
        description="Set ROYALE_COMPILER_HOME to point at the cross-compiler.">

        <available file="${ROYALE_HOME}/js/lib/jsc.jar"
        type="file"
        property="ROYALE_COMPILER_HOME"
        value="${ROYALE_HOME}/js"/>

        <available file="${env.ROYALE_COMPILER_HOME}/lib/jsc.jar"
            type="file"
            property="ROYALE_COMPILER_HOME"
            value="${env.ROYALE_COMPILER_HOME}"/>


And there are a lot of files to modify each time I do this.

Reply via email to