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

svn commit: r423412 - /incubator/harmony/enhanced/classlib/trunk/make/build-native.xml

Author: hindessm
Date: Wed Jul 19 02:29:09 2006
New Revision: 423412

URL: http://svn.apache.org/viewvc?rev=423412&view=rev
Log:
Only copy msvcr71.dll on windows.

Modified:
    incubator/harmony/enhanced/classlib/trunk/make/build-native.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/build-native.xml
URL: http://svn.apache.org/viewvc/incubator/harmony/enhanced/classlib/trunk/make/build-native.xml?rev=423412&r1=423411&r2=423412&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-native.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-native.xml Wed Jul 19 02:29:09 2006
@@ -101,7 +101,7 @@
     <!-- ================================= 
           target: layout              
          ================================= -->
-    <target name="layout"
+    <target name="layout" depends="layout.windows"
         description="Construct the correct directory structure for native binaries">
 
     	<!-- NLS catalog files -->
@@ -116,10 +116,12 @@
             <fileset dir="${depends.libs}" includes="*${shlib.suffix}*" />
         </copy>
 
+    </target>
+
+    <target name="layout.windows" if="is.windows">
         <!-- workaround until msdll is moved. -->
         <copy file="${msvcr71.dll}" todir="${hy.jdk}/jre/bin" overwrite="yes" />
     </target>
-
 
     <!-- ================================= 
           target: clean-layout