You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2008/02/08 13:42:09 UTC

svn commit: r619863 - in /harmony/enhanced: common_resources/trunk/make/properties.xml drlvm/trunk/make/vm/verifier-ext.xml

Author: varlax
Date: Fri Feb  8 04:42:09 2008
New Revision: 619863

URL: http://svn.apache.org/viewvc?rev=619863&view=rev
Log:
Deploy verifier extensions library to JDK

Modified:
    harmony/enhanced/common_resources/trunk/make/properties.xml
    harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml

Modified: harmony/enhanced/common_resources/trunk/make/properties.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/common_resources/trunk/make/properties.xml?rev=619863&r1=619862&r2=619863&view=diff
==============================================================================
--- harmony/enhanced/common_resources/trunk/make/properties.xml (original)
+++ harmony/enhanced/common_resources/trunk/make/properties.xml Fri Feb  8 04:42:09 2008
@@ -246,6 +246,16 @@
         <equals arg1="${shlib.suffix}" arg2="${linklib.suffix}"/>
     </condition>
 
+    <condition property="lib.prefix" value="">
+        <isset property="is.windows"/>
+    </condition>
+    <property name="lib.prefix" value="lib" />
+
+    <condition property="lib.suffix" value=".lib">
+        <isset property="is.windows"/>
+    </condition>
+    <property name="lib.suffix" value=".a" />
+
     <property name="manifest.suffix" value=".manifest" />
 
     <condition property="make.command" value="nmake.exe">

Modified: harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml?rev=619863&r1=619862&r2=619863&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml (original)
+++ harmony/enhanced/drlvm/trunk/make/vm/verifier-ext.xml Fri Feb  8 04:42:09 2008
@@ -34,6 +34,10 @@
                 </fileset>
             </compiler>
         </make-native>
+
+        <mkdir dir="${drlvm.deploy.dir}/jdk/lib" />
+        <move file="${drlvm.lib.dir}/${lib.prefix}verifier-ext${lib.suffix}" 
+              todir="${drlvm.deploy.dir}/jdk/lib" />
     </target>
     
     <target name="clean" >