You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2007/05/16 21:08:16 UTC

svn commit: r538690 - /harmony/enhanced/jdktools/trunk/make/build-test.xml

Author: gshimansky
Date: Wed May 16 12:08:15 2007
New Revision: 538690

URL: http://svn.apache.org/viewvc?view=rev&rev=538690
Log:
Applied HARMONY-3873 [jdktools][build] running tests always copies tested JRE


Modified:
    harmony/enhanced/jdktools/trunk/make/build-test.xml

Modified: harmony/enhanced/jdktools/trunk/make/build-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/jdktools/trunk/make/build-test.xml?view=diff&rev=538690&r1=538689&r2=538690
==============================================================================
--- harmony/enhanced/jdktools/trunk/make/build-test.xml (original)
+++ harmony/enhanced/jdktools/trunk/make/build-test.xml Wed May 16 12:08:15 2007
@@ -100,13 +100,13 @@
 
     <target name="copy-jre" depends="copy-jre-files, chmod-jre-files" unless="not.copy.jre"/>
 
-    <target name="copy-jre-files">
+    <target name="copy-jre-files" unless="not.copy.jre">
         <copy todir="${hy.jdk}/jre" overwrite="no">
               <fileset dir="${hy.deploy}/jdk/jre" />
         </copy>
     </target>
 
-    <target name="chmod-jre-files" if="is.unix">
+    <target name="chmod-jre-files" if="is.unix" unless="not.copy.jre">
         <chmod file="${hy.jdk}/jre/bin/java" perm="ugo+x" />
     </target>