Removed conditional creating of configure step.
authorJohan Groth <johang@symbian.org>
Thu, 07 Oct 2010 14:06:12 +0100
changeset 1293 5450d9b3723a
parent 1292 f853a7acb410
child 1294 6a48e8922c95
Removed conditional creating of configure step.
sf-tools/run-qmake.ant.xml.ftl
--- a/sf-tools/run-qmake.ant.xml.ftl	Thu Oct 07 13:44:15 2010 +0100
+++ b/sf-tools/run-qmake.ant.xml.ftl	Thu Oct 07 14:06:12 2010 +0100
@@ -6,11 +6,6 @@
 
     <target name="sf-configure-orbit">
         <sequential>
-  <#list data["//unit[@proFile = 'hb.pro']"] as unit>
-            <echo>Running configure.py for ${unit.@bldFile}/${unit.@proFile}</echo>
-            <if>
-                <available file="${r'$'}{build.drive}${unit.@bldFile}" type="dir"/>
-                <then>
                     <exec executable="cmd" dir="${r'$'}{build.drive}${unit.@bldFile}" failonerror="false" output="${r'$'}{build.drive}/output/logs/${ant['build.id']}_compile_hb_configure.log">
                         <arg value="/C"/>
                         <arg value="python"/>
@@ -23,12 +18,6 @@
                         <arg value="/C"/>
                         <arg value="make install"/>
                     </exec>
-                </then>
-                <else>
-                    <echo message="ERROR: Directory ${r'$'}{build.drive}${unit.@bldFile} doesn't exist."/>
-                </else>
-            </if>
-  </#list>
         </sequential>
     </target>