You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by ge...@apache.org on 2006/12/05 07:42:05 UTC

svn commit: r482525 - /harmony/enhanced/trunk/build.xml

Author: geirm
Date: Mon Dec  4 22:42:04 2006
New Revision: 482525

URL: http://svn.apache.org/viewvc?view=rev&rev=482525
Log:
modify to reflect change in drlvm build, an also have a 
new target to create a JDK (for now)


Modified:
    harmony/enhanced/trunk/build.xml

Modified: harmony/enhanced/trunk/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/trunk/build.xml?view=diff&rev=482525&r1=482524&r2=482525
==============================================================================
--- harmony/enhanced/trunk/build.xml (original)
+++ harmony/enhanced/trunk/build.xml Mon Dec  4 22:42:04 2006
@@ -183,7 +183,30 @@
         <!-- now copy the drlvm/build/deploy/jre
              contents into the jre in the HDK -->
         <copy todir="${target.dir}/hdk/jdk/jre">
-            <fileset dir="working_vm/build/deploy/jre">
+            <fileset dir="working_vm/build/deploy/jdk/jre">
+                <exclude name="**/*.pdb"/>
+            </fileset>
+        </copy>
+
+     </target>
+        
+     <target name="assemble_jdk">
+         
+        <!-- create the top-level jdk directory -->
+        <mkdir dir="${target.dir}/jdk"/>
+
+        <!-- now copy the drlvm/build/deploy/jre
+             contents into the jre in the JDK -->
+        <copy todir="${target.dir}/jdk/jre">
+            <fileset dir="working_vm/build/deploy/jdk/jre">
+                <exclude name="**/*.pdb"/>
+            </fileset>
+        </copy>
+
+        <!-- now copy the drlvm/build/deploy/jre
+             contents into the jre in the JDK -->
+        <copy todir="${target.dir}/jdk/">
+            <fileset dir="working_jdktools/deploy/jdk">
                 <exclude name="**/*.pdb"/>
             </fileset>
         </copy>