Adjusted invocation of ConE so it doesn't completely fail if /epoc32/rom/config/ does not exist.
authorSimon Howkins <simonh@symbian.org>
Tue, 16 Mar 2010 11:43:17 +0000
changeset 933 b1c372bfef95
parent 932 55bdb7c60aa9
child 934 a4f43b5e3c81
Adjusted invocation of ConE so it doesn't completely fail if /epoc32/rom/config/ does not exist. Should get the CI build running again.
sf-platform/build.xml
--- a/sf-platform/build.xml	Tue Mar 16 10:11:52 2010 +0000
+++ b/sf-platform/build.xml	Tue Mar 16 11:43:17 2010 +0000
@@ -216,14 +216,16 @@
       <then>
         <echo message="INFO Generating ConE CenRep"/>
 
-        <exec executable="cmd" dir="${build.drive}/epoc32/rom/config" failonerror="false" output="${build.log.dir}/${build.id}_cenrep.log">
+        <exec executable="cmd" dir="${build.drive}/epoc32/tools" failonerror="false" output="${build.log.dir}/${build.id}_cenrep.log">
           <arg value="/c"/>
           <arg value="${env.PDT_HOME}/ConE/cone.cmd"/>
           <arg value="generate"/>
+          <arg value="-p"/>
+          <arg value="\epoc32\rom\config"/>
           <arg value="-c"/>
           <arg value="convert.confml"/>
           <arg value="-o"/>
-          <arg value="."/>
+          <arg value="${build.drive}/epoc32/rom/config"/>
         </exec>
 
         <exec executable="cmd" dir="${build.drive}/epoc32/tools" failonerror="false" append="true" output="${build.log.dir}/${build.id}_cenrep.log">