Attrib erroronmissingdir is supported for Ant 1.8 only, so workaround by creating dir in advance.
authorShabe Razvi <shaber@symbian.org>
Mon, 12 Jul 2010 15:13:57 +0100
changeset 1154 ed7be4dda2ab
parent 1153 c040b8983eae
child 1155 18bce39467dc
Attrib erroronmissingdir is supported for Ant 1.8 only, so workaround by creating dir in advance.
common/build.xml
--- a/common/build.xml	Mon Jul 12 14:41:14 2010 +0100
+++ b/common/build.xml	Mon Jul 12 15:13:57 2010 +0100
@@ -801,8 +801,9 @@
     <!-- Unpack the rnd zips ready to be used in the build -->
     <target name="sf-unpack-rnd">
         <echo message="INFO Unpacking any available RnD binaries"/>
+		<mkdir dir="${build.drive}/output/zips/"/>
         <for param="rndZip">
-            <fileset dir="${build.drive}/output/zips/" erroronmissingdir="false">
+            <fileset dir="${build.drive}/output/zips/">
                 <include name="binaries_*.zip"/> <!-- Internal rnd bins -->
                 <include name="release/bin_*.zip"/> <!-- Releaseable rnd bins -->
             </fileset>