Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2005-04-07 13:54:22 +0000
committerDoug Schaefer2005-04-07 13:54:22 +0000
commit4cc19b628e009d1c6748bea119c5ccc3b564172e (patch)
tree524c42bf4dea2ad788232989667515632fb17f91 /releng/org.eclipse.cdt.releng/build.xml
parentcdbad1649e3f47c865205b12b6095f280a69a867 (diff)
downloadorg.eclipse.cdt-4cc19b628e009d1c6748bea119c5ccc3b564172e.tar.gz
org.eclipse.cdt-4cc19b628e009d1c6748bea119c5ccc3b564172e.tar.xz
org.eclipse.cdt-4cc19b628e009d1c6748bea119c5ccc3b564172e.zip
My cute strategy for detecting compile errors finally broke. I now search for " ERROR" since there is a warning out of javadoc (which now works) about IStatus#ERROR.
Diffstat (limited to 'releng/org.eclipse.cdt.releng/build.xml')
-rw-r--r--releng/org.eclipse.cdt.releng/build.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/releng/org.eclipse.cdt.releng/build.xml b/releng/org.eclipse.cdt.releng/build.xml
index a55ce829aec..12abd68a10d 100644
--- a/releng/org.eclipse.cdt.releng/build.xml
+++ b/releng/org.eclipse.cdt.releng/build.xml
@@ -65,7 +65,7 @@
</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