Make RnD merge conditional, only on discovery of rnd binary tree
authorShabe Razvi <shaber@symbian.org>
Wed, 06 May 2009 12:22:04 +0100
changeset 86 3922155d5f82
parent 85 834b82541047
child 87 b0bfcd9eca10
Make RnD merge conditional, only on discovery of rnd binary tree
common/build.xml
--- a/common/build.xml	Tue May 05 16:32:16 2009 +0100
+++ b/common/build.xml	Wed May 06 12:22:04 2009 +0100
@@ -360,12 +360,17 @@
     </target>
 
     <target name="sf-merge-epoc32">
-    <!-- merge RnD binaries into the epoc tree -->
-        <echo message="Merges RnD binaries into the Epoc tree"/>
+    <!-- conditional execution of merge if rnd dir is found -->
+    <if><available file="${build.drive}/rnd" type="dir" />
+        <then>
+        <echo message="RnD binaries found, merging into ${build.drive}/epoc32 tree"/>
         <copy todir="${build.drive}/epoc32" verbose="false" overwrite="true">
             <fileset dir="${build.drive}/rnd"/>
             <regexpmapper from="^(.*)/(.*)/epoc32/(.*)" to="\3" handledirsep="true"/>
         </copy>
+        </then>
+    </if>
   </target>
+  
 </project>