1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 22:25:25 +02:00

[releng] Disable ant mail target due to

Bug 344518 - Regression: ant EmailTask fails with JRE-1.5
This commit is contained in:
Martin Oberhuber 2011-05-04 07:24:23 +00:00
parent 7fdfa3d878
commit 619e1035a8

View file

@ -447,17 +447,26 @@
<replace file="${buildDirectory}/message.txt">
<replacefilter token="@dropDir@" value="${dropDir}"/>
</replace>
<!--
DISABLE mail target due to Eclipse bug 344518 (mail fails due to missing extra jars)
<mail subject="RSE Build ${buildId} completed"
tolist="${mailto}" from="martin.oberhuber@windriver.com">
<message src="${buildDirectory}/message.txt"/>
</mail>
-->
<echo message="RSE build PASSED!" />
</target>
<target name="mailFail" if="hasErrors">
<!--
DISABLE mail target due to Eclipse bug 344518 (mail fails due to missing extra jars)
<mail subject="RSE Build ${buildId} failed"
tolist="${mailto}" from="martin.oberhuber@windriver.com">
<message src="${packageDirectory}/${dropDir}/compilelog.txt"/>
</mail>
-->
<echo message="ERROR: RSE build FAILED!" />
<echo message="See ${packageDirectory}/${dropDir}/compilelog.txt" />
</target>
<!-- ===================================================================== -->