1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-03 14:25:37 +02:00

Add a timestamp to about.mappings for S-builds and R-builds

This commit is contained in:
Martin Oberhuber 2006-11-12 20:08:13 +00:00
parent efcd73276e
commit 818801c4b1

View file

@ -270,7 +270,13 @@
<!-- Steps to do before running the build.xmls for the elements being built. -->
<!-- ===================================================================== -->
<target name="preProcess">
<replace dir="${buildDirectory}/plugins" value="${buildId}" token="@build@">
<condition property="buildIdForMappings" value="${buildId} (${mydstamp}-${mytstamp})" else="${buildId}">
<or>
<equals arg1="${buildType}" arg2="S"/>
<equals arg1="${buildType}" arg2="R"/>
</or>
</condition>
<replace dir="${buildDirectory}/plugins" value="${buildIdForMappings}" token="@build@">
<include name="**/about.mappings" />
</replace>
</target>