equal
deleted
inserted
replaced
84 </copy> |
84 </copy> |
85 </sequential> |
85 </sequential> |
86 </for> |
86 </for> |
87 </target> |
87 </target> |
88 |
88 |
89 |
|
90 <target name="generate-layers"> |
|
91 <echo message="canno-file:${canonical.sysdef.file}"/> |
|
92 <echo message="raptor-filters:raptor_${sysdef.configuration}"/> |
|
93 |
|
94 <!-- All we want is a sysdef with the config name appended, so just copy it --> |
|
95 <echo message="INFO: Skip GenXML and copy sysdef to sysdef+config name"/> |
|
96 <copy file="${canonical.sysdef.file}" tofile="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml"/> |
|
97 |
|
98 <copy file="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml" tofile="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}.xml"> |
|
99 <filterchain> |
|
100 <linecontainsregexp negate="true"> |
|
101 <regexp pattern="^\s*$"/> |
|
102 </linecontainsregexp> |
|
103 </filterchain> |
|
104 </copy> |
|
105 <copy file="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}.xml" todir="${build.log.dir}/BOM/"/> |
|
106 <delete file="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml"/> |
|
107 </target> |
|
108 |
|
109 <!-- |
89 <!-- |
110 == Name: SF-COMPILE |
90 == Name: SF-COMPILE |
111 == |
91 == |
112 == Desc: Override of common sf-compile target defined in |
92 == Desc: Override of common sf-compile target defined in |
113 == common\build.xml |
93 == common\build.xml |