Skip to content

Commit

Permalink
Fixing more issues with cross build script.
Browse files Browse the repository at this point in the history
  • Loading branch information
kwhat committed Jan 21, 2017
1 parent 251b622 commit a5975c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cross.build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<!-- We need to override the src and bin locations. -->
<property name="dir.bin" value="${basedir}/jnitasks/bin" />
<property name="dir.src" value="${basedir}/jnitasks/src" />
<property name="dir.jar" value="${basedir}/jnativehook" />
<property name="dir.jar" value="${basedir}" />

<!-- Set a few of the configurable properties. -->
<property name="ant.build.debug" value="${ant.build.debug}" />
Expand Down Expand Up @@ -202,7 +202,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.


<target name="compile" depends="compile-jnitasks" description="Compiles both Java and C source files.">
<ant antfile="build.xml" dir="jnativehook" inheritAll="false">
<ant antfile="build.xml" dir="${basedir}" inheritAll="false">
<target name="compile-java" />

<property name="ant.build.javac.source" value="${ant.build.javac.source}" />
Expand Down Expand Up @@ -251,7 +251,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

<target name="package" depends="" description="Creates zip files for distribution.">

<ant antfile="build.xml" dir="jnativehook" target="package" inheritAll="false">
<ant antfile="build.xml" dir="${basedir}" target="package" inheritAll="false">
<property name="ant.build.major" value="${ant.build.major}" />
<property name="ant.build.minor" value="${ant.build.minor}" />
<property name="ant.build.revision" value="${ant.build.revision}" />
Expand Down

0 comments on commit a5975c1

Please sign in to comment.