Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/releng
diff options
context:
space:
mode:
authorDoug Schaefer2004-07-16 18:34:04 +0000
committerDoug Schaefer2004-07-16 18:34:04 +0000
commit9690cb0ad9ce71148a0247fa0d463eae2d377d59 (patch)
tree5f3b3d71af3e0be06bc877c5cea9e4faf64caba8 /releng
parentc5102cafc424cef4cbe5e89f4874456a35fc61ed (diff)
downloadorg.eclipse.cdt-9690cb0ad9ce71148a0247fa0d463eae2d377d59.tar.gz
org.eclipse.cdt-9690cb0ad9ce71148a0247fa0d463eae2d377d59.tar.xz
org.eclipse.cdt-9690cb0ad9ce71148a0247fa0d463eae2d377d59.zip
Fixed up compile log so that it doesn't open up notepad on Windows.
Diffstat (limited to 'releng')
-rw-r--r--releng/org.eclipse.cdt.releng/build.xml4
-rw-r--r--releng/org.eclipse.cdt.releng/buildindex.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/releng/org.eclipse.cdt.releng/build.xml b/releng/org.eclipse.cdt.releng/build.xml
index 219d49be744..7af6900fb54 100644
--- a/releng/org.eclipse.cdt.releng/build.xml
+++ b/releng/org.eclipse.cdt.releng/build.xml
@@ -54,10 +54,10 @@
<ant antfile="build.xml" dir="${pde.build.scripts}">
<property name="builder" value="${basedir}/sdk" />
</ant>
- <concat destfile="${zipsdir}/compile.log">
+ <concat destfile="${zipsdir}/compilelog.txt">
<fileset dir="${buildDirectory}/plugins" includes="**/*.bin.log"/>
</concat>
- <loadfile property="compileLog" srcFile="${zipsdir}/compile.log"/>
+ <loadfile property="compileLog" srcFile="${zipsdir}/compilelog.txt"/>
<condition property="hasErrors">
<contains string="${compileLog}" substring="ERROR"/>
</condition>
diff --git a/releng/org.eclipse.cdt.releng/buildindex.html b/releng/org.eclipse.cdt.releng/buildindex.html
index 039c2093779..e1c42ffbfc4 100644
--- a/releng/org.eclipse.cdt.releng/buildindex.html
+++ b/releng/org.eclipse.cdt.releng/buildindex.html
@@ -5,7 +5,7 @@
</head>
<body>
<h2>CDT @branchVersion@ Build @buildId@</h2>
-<p><a href="compile.log">Compile Log</a><br>
+<p><a href="compilelog.txt">Compile Log</a><br>
</p>
<h3>CDT Runtime Feature</h3>
<p>includes editor, search, builders, launch, debug, gnu toolchain

Back to the top