# HG changeset patch
# User Simon Howkins <simonh@symbian.org>
# Date 1250183432 -3600
# Node ID 94b4a136d8004312833f7cd8c481eb1bff31588d
# Parent  f9ce0418735beb551573965bd8fab5aef9aff7eb
Simplified create-canonical-sysdef-file so that it's just a simple copy.

diff -r f9ce0418735b -r 94b4a136d800 common/build.xml
--- a/common/build.xml	Fri Aug 14 10:37:18 2009 +0100
+++ b/common/build.xml	Thu Aug 13 18:10:32 2009 +0100
@@ -517,17 +517,7 @@
     </target>
     
     <target name="create-canonical-sysdef-file">
-        <if>
-            <istrue value="${sf.spec.systemdefinition.assemble}"/>
-            <then>
-                <echo message="Calling Helium create-canonical-sysdef-file target to assemble sysdef fragments."/>
-                <runtarget target="compile.create-canonical-sysdef-file"/>
-            </then>
-            <else>
-                <echo message="Will use ${build.drive}/${sf.spec.systemdefinition.location} as is as sysdef file"/>
-                <copy file="${build.drive}/${sf.spec.systemdefinition.location}" tofile="${build.drive}/output/build/canonical_system_definition.xml" failonerror="true" verbose="true"/>
-            </else>
-        </if>
+      <copy file="${build.drive}/${sf.spec.systemdefinition.location}" tofile="${canonical.sysdef.file}" failonerror="true" verbose="true"/>
     </target>
     
   <target name="sf-truclean">