changeset 8226:60b6dd6a58b7

fixed warning about includeantruntime property not being set see: http://stackoverflow.com/questions/5103384/ant-warning-includeantruntime-was-not-set
author Doug Simon <doug.simon@oracle.com>
date Tue, 12 Mar 2013 14:41:48 +0100
parents ae54ef386838
children ce91d45f0b1b
files make/build-graal.xml
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/make/build-graal.xml	Tue Mar 12 14:40:38 2013 +0100
+++ b/make/build-graal.xml	Tue Mar 12 14:41:48 2013 +0100
@@ -34,7 +34,7 @@
 
   <target name="compile">
     <mkdir dir="${classes.dir}"/>
-    <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on">
+    <javac srcdir="${src.dir}" destdir="${classes.dir}" debug="on" includeantruntime="false">
       <include name="com.oracle.graal.*/**"/>
       <exclude name="com.oracle.graal.test/**"/>
       <exclude name="com.oracle.graal.*.test/**"/>