Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVivian Kong2009-05-05 15:34:25 +0000
committerVivian Kong2009-05-05 15:34:25 +0000
commit67dcd86f3556c4bdb47e50acd1c540536d2948d5 (patch)
tree0bc634ad719ae7adf6ee1daa62692d00b611aefe
parent4559c40f782afa5b0ab66c09da44364d9ac51492 (diff)
downloadorg.eclipse.cdt-67dcd86f3556c4bdb47e50acd1c540536d2948d5.tar.gz
org.eclipse.cdt-67dcd86f3556c4bdb47e50acd1c540536d2948d5.tar.xz
org.eclipse.cdt-67dcd86f3556c4bdb47e50acd1c540536d2948d5.zip
attempt to fix error detection during build
-rw-r--r--releng/org.eclipse.cdt.releng/build.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/releng/org.eclipse.cdt.releng/build.xml b/releng/org.eclipse.cdt.releng/build.xml
index 9e6add2df62..b5f86d81fb6 100644
--- a/releng/org.eclipse.cdt.releng/build.xml
+++ b/releng/org.eclipse.cdt.releng/build.xml
@@ -142,11 +142,11 @@
<property name="builder" value="${basedir}/master" />
</ant>
<concat destfile="${zipsdir}/compilelog.txt">
- <fileset dir="${buildDirectory}/plugins" includes="**/*.bin.log"/>
+ <fileset dir="${buildDirectory}/plugins" includes="**/*@dot.log"/>
</concat>
<loadfile property="compileLog" srcFile="${zipsdir}/compilelog.txt"/>
<condition property="hasErrors">
- <contains string="${compileLog}" substring=" ERROR"/>
+ <contains string="${compileLog}" substring=" ERROR "/>
</condition>
<copy file="buildindex.html" tofile="${zipsdir}/index.html"/>
<replace file="${zipsdir}/index.html">

Back to the top