Author: hindessm
Date: Wed Aug 19 14:54:58 2009
New Revision: 805827
URL: http://svn.apache.org/viewvc?rev=805827&view=rev
Log:
Try to avoid doing work in the case of a trivial build-native where no
files have changed. Remove the overwrite="yes" which I think is only
needed when there is clock skew and set preservemodificationtime="true"
so that we avoid clock problems and avoid triggering make rules.
Modified:
harmony/enhanced/classlib/trunk/modules/archive/build.xml
harmony/enhanced/classlib/trunk/modules/auth/build.xml
harmony/enhanced/classlib/trunk/modules/awt/build.xml
harmony/enhanced/classlib/trunk/modules/imageio/build.xml
harmony/enhanced/classlib/trunk/modules/instrument/build.xml
harmony/enhanced/classlib/trunk/modules/luni/build.xml
harmony/enhanced/classlib/trunk/modules/misc/build.xml
harmony/enhanced/classlib/trunk/modules/nio/build.xml
harmony/enhanced/classlib/trunk/modules/portlib/build.xml
harmony/enhanced/classlib/trunk/modules/print/build.xml
Modified: harmony/enhanced/classlib/trunk/modules/archive/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/archive/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/archive/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/archive/build.xml Wed Aug 19 14:54:58 2009
@@ -35,7 +35,7 @@
depends="overlay-oss, copy-zipsup-include, copy-zlib-include" />
<target name="copy-zlib-include" unless="hy.skip.zlib">
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/zlib_dist">
<include name="zlib.h" />
<include name="zconf.h" />
@@ -44,7 +44,7 @@
</target>
<target name="copy-zipsup-include" if="hy.skip.zip.api">
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include/shared">
<include name="zipsup.h" />
</fileset>
@@ -95,7 +95,7 @@
<target name="-build-native-zlib" unless="hy.skip.zlib">
<make dir="src/main/native/zlib/${hy.os.family}" />
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/zlib">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -103,7 +103,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/zlib/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -112,7 +112,7 @@
<target name="-build-native-archive">
<make dir="src/main/native/archive/${hy.os.family}" />
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/archive">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -120,7 +120,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/archive/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/auth/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/auth/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/auth/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/auth/build.xml Wed Aug 19 14:54:58 2009
@@ -50,7 +50,7 @@
<make dir="src/main/native/auth/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/auth">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -58,7 +58,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/auth/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/awt/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/awt/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/awt/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/awt/build.xml Wed Aug 19 14:54:58 2009
@@ -253,7 +253,7 @@
</make>
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/lcmm">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -261,7 +261,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/lcmm/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -273,7 +273,7 @@
</make-elements>
</make>
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/jpegdecoder">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -281,7 +281,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/jpegdecoder/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -294,7 +294,7 @@
</make>
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/gl">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -302,7 +302,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/gl/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -310,7 +310,7 @@
<make dir="src/main/native/oglwrapper/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/oglwrapper">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -318,7 +318,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/oglwrapper/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -326,7 +326,7 @@
<make dir="src/main/native/fontlib/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/fontlib">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -334,7 +334,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/fontlib/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -344,13 +344,13 @@
<target name="-build-native-unix" if="is.unix">
<make dir="src/main/native/x11wrapper/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/x11wrapper">
<include name="*${shlib.suffix}*"/>
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/x11wrapper/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -358,13 +358,13 @@
<make dir="src/main/native/linuxfont/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/linuxfont">
<include name="*${shlib.suffix}*"/>
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/linuxfont/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -374,7 +374,7 @@
<target name="-build-native-windows" if="is.windows">
<make dir="src/main/native/win32wrapper/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/win32wrapper">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" />
@@ -384,7 +384,7 @@
<make dir="src/main/native/winfont/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/winfont">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" />
Modified: harmony/enhanced/classlib/trunk/modules/imageio/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/imageio/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/imageio/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/imageio/build.xml Wed Aug 19 14:54:58 2009
@@ -155,7 +155,7 @@
</make-elements>
</make>
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/jpegencoder/">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -163,7 +163,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/jpegencoder/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -175,7 +175,7 @@
</make-elements>
</make>
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/pngencoder/">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -183,7 +183,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/pngencoder/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/instrument/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/instrument/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/instrument/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/instrument/build.xml Wed Aug 19 14:54:58 2009
@@ -49,7 +49,7 @@
<make dir="src/main/native/instrument/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/instrument">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -57,7 +57,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/instrument/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/luni/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/build.xml Wed Aug 19 14:54:58 2009
@@ -32,7 +32,7 @@
<target name="clean" depends="clean-java,clean-native,clean-test" />
<target name="copy-native-includes">
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include">
<include name="vmi.h" />
<include name="hyvmls.h" />
@@ -43,7 +43,7 @@
<include name="vmizip.h"/>
</fileset>
</copy>
- <copy todir="${hy.jdk}/include" overwrite="yes">
+ <copy todir="${hy.jdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include">
<include name="jni.h" />
<include name="jni_types.h" />
@@ -69,7 +69,8 @@
runtime the libvmi.so provided by the VM
implementation is loaded
-->
- <copy todir="${hy.hdk}/lib" overwrite="yes" failonerror="false">
+ <copy todir="${hy.hdk}/lib" failonerror="false"
+ preservelastmodified="true">
<fileset dir="src/main/native/vmi">
<include name="libvmi${shlib.suffix}"/>
</fileset>
@@ -92,7 +93,7 @@
<!-- Build luni dll -->
<make dir="src/main/native/luni/${hy.os.family}" />
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/luni">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -100,7 +101,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/luni/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -121,7 +122,7 @@
<make dir="src/main/native/launcher/${hy.os.family}" />
<!-- Copy across the built executables -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/launcher">
<patternset includes="java${exe.suffix}" />
<patternset includes="javaw${exe.suffix}" />
Modified: harmony/enhanced/classlib/trunk/modules/misc/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/misc/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/misc/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/misc/build.xml Wed Aug 19 14:54:58 2009
@@ -112,7 +112,7 @@
<make dir="src/main/native/accessors/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/accessors">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -120,7 +120,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/accessors/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/nio/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/nio/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/nio/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/nio/build.xml Wed Aug 19 14:54:58 2009
@@ -49,7 +49,7 @@
<make dir="src/main/native/nio/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/nio">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -57,7 +57,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/nio/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/portlib/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/portlib/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/portlib/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/portlib/build.xml Wed Aug 19 14:54:58 2009
@@ -53,7 +53,7 @@
<target name="copy-native-includes"
depends="-copy-thread-include,-copy-thread-stub-include" >
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include/shared">
<include name="hyport.h" />
<include name="hycomp.h" />
@@ -67,7 +67,7 @@
<include name="utf8encode.h" />
</fileset>
</copy>
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include/${hy.os.family}">
<include name="hymutex.h" />
<include name="hysock.h" />
@@ -77,7 +77,7 @@
</target>
<target name="-copy-thread-include" unless="hy.skip.thr" >
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/include/shared">
<include name="hythread.h" />
</fileset>
@@ -85,7 +85,7 @@
</target>
<target name="-copy-thread-stub-include" if="hy.skip.thr" >
- <copy todir="${hy.hdk}/include" overwrite="yes">
+ <copy todir="${hy.hdk}/include" preservelastmodified="true">
<fileset dir="src/main/native/thrstub/shared">
<include name="hythread.h" />
</fileset>
@@ -110,7 +110,7 @@
<antcall target="-build-copy-thread" />
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/thread/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
@@ -118,7 +118,7 @@
</target>
<target name="-build-copy-thread" unless="hy.thr.nodeploy">
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/thread">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -131,7 +131,7 @@
<!-- Build thread dll -->
<make dir="src/main/native/thrstub/${hy.os.family}" />
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/thrstub">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -148,7 +148,7 @@
<!-- Build port dll -->
<make dir="src/main/native/port/${hy.os.family}" />
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/port">
<include name="*${shlib.suffix}*" />
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -156,7 +156,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/port/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
Modified: harmony/enhanced/classlib/trunk/modules/print/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/print/build.xml?rev=805827&r1=805826&r2=805827&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/print/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/print/build.xml Wed Aug 19 14:54:58 2009
@@ -89,7 +89,7 @@
<target name="build-native-all" if="is.windows">
<make dir="src/main/native/print/${hy.os.family}" />
<!-- Copy the built shared libs over to the jre/bin dir -->
- <copy todir="${hy.jdk}/jre/bin" overwrite="yes">
+ <copy todir="${hy.jdk}/jre/bin" preservelastmodified="true">
<fileset dir="src/main/native/print/">
<include name="*${shlib.suffix}*"/>
<include name="*${progdb.suffix}*" if="is.windows" />
@@ -97,7 +97,7 @@
</fileset>
</copy>
<!-- Copy link exports file on z/OS -->
- <copy todir="${hy.hdk}/lib" overwrite="yes">
+ <copy todir="${hy.hdk}/lib" preservelastmodified="true">
<fileset dir="src/main/native/print/${hy.os.family}">
<include name="*${linklib.suffix}" if="is.zos" />
</fileset>
|