equal
deleted
inserted
replaced
358 <param name="zip.target.name" value="bin" /> |
358 <param name="zip.target.name" value="bin" /> |
359 </antcall> |
359 </antcall> |
360 </target> |
360 </target> |
361 |
361 |
362 <target name="sf-merge-epoc32"> |
362 <target name="sf-merge-epoc32"> |
363 <!-- merge RnD binaries into the epoc tree --> |
363 <!-- conditional execution of merge if rnd dir is found --> |
364 <echo message="Merges RnD binaries into the Epoc tree"/> |
364 <if><available file="${build.drive}/rnd" type="dir" /> |
|
365 <then> |
|
366 <echo message="RnD binaries found, merging into ${build.drive}/epoc32 tree"/> |
365 <copy todir="${build.drive}/epoc32" verbose="false" overwrite="true"> |
367 <copy todir="${build.drive}/epoc32" verbose="false" overwrite="true"> |
366 <fileset dir="${build.drive}/rnd"/> |
368 <fileset dir="${build.drive}/rnd"/> |
367 <regexpmapper from="^(.*)/(.*)/epoc32/(.*)" to="\3" handledirsep="true"/> |
369 <regexpmapper from="^(.*)/(.*)/epoc32/(.*)" to="\3" handledirsep="true"/> |
368 </copy> |
370 </copy> |
|
371 </then> |
|
372 </if> |
369 </target> |
373 </target> |
|
374 |
370 </project> |
375 </project> |
371 |
376 |