Dont fail if output/zips/ dir is not present (as a side effect of turning off packaging).
authorShabe Razvi <shaber@symbian.org>
Mon, 12 Jul 2010 14:41:14 +0100
changeset 1165 c040b8983eae
parent 1164 b978b05bda4f
child 1166 ed7be4dda2ab
Dont fail if output/zips/ dir is not present (as a side effect of turning off packaging).
common/build.xml
--- a/common/build.xml	Mon Jul 12 13:46:10 2010 +0100
+++ b/common/build.xml	Mon Jul 12 14:41:14 2010 +0100
@@ -802,12 +802,12 @@
     <target name="sf-unpack-rnd">
         <echo message="INFO Unpacking any available RnD binaries"/>
         <for param="rndZip">
-            <fileset dir="${build.drive}/output/zips/">
+            <fileset dir="${build.drive}/output/zips/" erroronmissingdir="false">
                 <include name="binaries_*.zip"/> <!-- Internal rnd bins -->
                 <include name="release/bin_*.zip"/> <!-- Releaseable rnd bins -->
             </fileset>
             <sequential>
-                <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log" append="true">
+                <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log" append="true" failonerror="false">
                     <arg value="x"/>
                     <arg value="-y"/> <!-- Need to unpack in overwrite mode, due to TEF -->
                     <arg value="-i!epoc32\*"/> <!-- Only unzip items into the epoc32 tree -->