Skip to content
This repository has been archived by the owner on Mar 20, 2018. It is now read-only.

Commit

Permalink
Fix build script
Browse files Browse the repository at this point in the history
  • Loading branch information
jodastephen committed Feb 28, 2010
1 parent 85ebda9 commit efa6506
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build.xml
Expand Up @@ -78,6 +78,8 @@
<tstamp />
</target>

<target name="clean" depends="cleanAll" description="clean up" />

<target name="cleanAll" description="clean up">
<delete dir="${build}" />
<delete dir="${dist}" />
Expand All @@ -100,7 +102,7 @@

<target name="compileOpenJDK" depends="compileCore">
<mkdir dir="${ojdk.main.classes}"/>
<javac srcdir="${ojdk.main}" destdir="${ojdk.main.classes}" nowarn="true">
<javac srcdir="${ojdk.main}" destdir="${ojdk.main.classes}" nowarn="true" bootclasspath="${java.home}/lib/rt.jar">
<classpath refid="main.path"/>
</javac>
</target>
Expand Down Expand Up @@ -231,6 +233,9 @@
<copy todir="${dist}/${src}">
<fileset dir="${src}"/>
</copy>
<copy todir="${dist}/lib" flatten="true">
<fileset dir="${src}" includes="**/ZoneRuleInfo*.jar"/>
</copy>
<copy todir="${dist}/nbproject">
<fileset dir="nbproject"/>
</copy>
Expand Down

0 comments on commit efa6506

Please sign in to comment.