aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorathomas <[email protected]>2003-11-24 02:51:48 +0000
committerathomas <[email protected]>2003-11-24 02:51:48 +0000
commite681270548e5a4322abc7799dc3003c19294b38b (patch)
treeb4779d46b386077c9d88a3f8ab69d2cd98977daf
parenta6f8e915b7d9757713dc3b3e9b69dd7d694ce4b3 (diff)
jdk.home now taken from JAVA_HOME by default
git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@79 03bf7f67-59de-4072-a415-9a990d468a3f
-rw-r--r--build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index 53a2fcb..73a7380 100644
--- a/build.xml
+++ b/build.xml
@@ -37,11 +37,11 @@
<project name="Sun Games Initiative Client Technologies" basedir="." default="all">
<target name="init">
+ <property environment="env"/>
+ <property name="jdk.home" value="${env.JAVA_HOME}"/>
<!-- YOU MUST EDIT & UNCOMMENT THESE PROPERTIES BEFORE BUILDING. SEE README.TXT FOR INSTRUCTIONS
- <property name="jdk.home" value="c:/j2sdk1.4.2"/>
<property name="openal.home" value="C:/Program Files/Creative Labs/OpenAL 1.0 SDK"/>
-->
- <fail message="jdk.home not set. Please see README.txt for instructions" unless="jdk.home"/>
<fail message="openal.home not set. Please see README.txt for instructions" unless="openal.home"/>
<property name="optimize" value="on"/> <!-- Edit this to taste -->
<property name="debug" value="on"/> <!-- Edit this to taste -->