aboutsummaryrefslogtreecommitdiffstats
path: root/make/build.xml
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-02-27 20:00:29 +0100
committerSven Gothel <[email protected]>2012-02-27 20:00:29 +0100
commit98f2fbbf413f9a14551f3517b33079f7b8ac489d (patch)
tree99c0d6e0fa0a66e72702df78893d01d45c36863e /make/build.xml
parentc7613a5f84784c16ba4d1ab6d92d659addbce292 (diff)
Enable cross compile/test on linux-armv7 (including armv7 openal soft library)
Diffstat (limited to 'make/build.xml')
-rwxr-xr-xmake/build.xml6
1 files changed, 4 insertions, 2 deletions
diff --git a/make/build.xml b/make/build.xml
index de590c2..1fbd583 100755
--- a/make/build.xml
+++ b/make/build.xml
@@ -45,7 +45,7 @@
<isset property="rootrel.build"/>
</not>
</condition>
- <property name="build" location="${project.root}/${rootrel.build}" />
+ <property name="build" value="${project.root}/${rootrel.build}" />
<property name="gluegen.root" value="${project.root}/../gluegen" />
<property name="gluegen.build" value="${gluegen.root}/${rootrel.build}" />
@@ -189,7 +189,9 @@
<!--
- Build GlueGen
-->
- <target name="build.gluegen" depends="init">
+ <target name="build.gluegen" depends="init" unless="common.gluegen.build.done">
+ <property name="common.gluegen.build.done" value="true" />
+
<!-- Run the GlueGen build to ensure that the GlueGen ANT task
- has been built. -->
<ant antfile="${gluegen.build.xml}" dir="${gluegen.make.dir}" target="base.compile" inheritAll="false" />