common/build.xml
changeset 1153 c040b8983eae
parent 1148 7930eb17d6fc
child 1154 ed7be4dda2ab
equal deleted inserted replaced
1152:b978b05bda4f 1153:c040b8983eae
   800     
   800     
   801     <!-- Unpack the rnd zips ready to be used in the build -->
   801     <!-- Unpack the rnd zips ready to be used in the build -->
   802     <target name="sf-unpack-rnd">
   802     <target name="sf-unpack-rnd">
   803         <echo message="INFO Unpacking any available RnD binaries"/>
   803         <echo message="INFO Unpacking any available RnD binaries"/>
   804         <for param="rndZip">
   804         <for param="rndZip">
   805             <fileset dir="${build.drive}/output/zips/">
   805             <fileset dir="${build.drive}/output/zips/" erroronmissingdir="false">
   806                 <include name="binaries_*.zip"/> <!-- Internal rnd bins -->
   806                 <include name="binaries_*.zip"/> <!-- Internal rnd bins -->
   807                 <include name="release/bin_*.zip"/> <!-- Releaseable rnd bins -->
   807                 <include name="release/bin_*.zip"/> <!-- Releaseable rnd bins -->
   808             </fileset>
   808             </fileset>
   809             <sequential>
   809             <sequential>
   810                 <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log" append="true">
   810                 <exec executable="7za" dir="${build.drive}" output="${build.log.dir}/unzip_${build.id}_binaries_rnd.log" append="true" failonerror="false">
   811                     <arg value="x"/>
   811                     <arg value="x"/>
   812                     <arg value="-y"/> <!-- Need to unpack in overwrite mode, due to TEF -->
   812                     <arg value="-y"/> <!-- Need to unpack in overwrite mode, due to TEF -->
   813                     <arg value="-i!epoc32\*"/> <!-- Only unzip items into the epoc32 tree -->
   813                     <arg value="-i!epoc32\*"/> <!-- Only unzip items into the epoc32 tree -->
   814                     <arg value="@{rndZip}"/>
   814                     <arg value="@{rndZip}"/>
   815                 </exec>
   815                 </exec>