Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOlivier Thomann2010-10-15 00:37:08 +0000
committerOlivier Thomann2010-10-15 00:37:08 +0000
commit559e5f2f8f5db2c53b837aedd1782f0020008093 (patch)
tree31b0255b667487260983718f2171f25385000226 /org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml
parent056ffb74e9369e6d5446ce3e959b56b8fcbcc7da (diff)
downloadeclipse.jdt.core-559e5f2f8f5db2c53b837aedd1782f0020008093.tar.gz
eclipse.jdt.core-559e5f2f8f5db2c53b837aedd1782f0020008093.tar.xz
eclipse.jdt.core-559e5f2f8f5db2c53b837aedd1782f0020008093.zip
HEAD - Fix for 327817
Diffstat (limited to 'org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml')
-rw-r--r--org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml12
1 files changed, 6 insertions, 6 deletions
diff --git a/org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml b/org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml
index de7cd9bfc1..8b4bd471f0 100644
--- a/org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml
+++ b/org.eclipse.jdt.compiler.tool/customBuildCallbacks.xml
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?> <!--
- Copyright (c) 2006, 2009 IBM Corporation and others.
+ Copyright (c) 2006, 2010 IBM Corporation and others.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
@@ -42,8 +42,8 @@
<mkdir dir="${dest}/checksum" />
<checksum file="${dest}/ecj-${buildLabel}.jar" property="md5-ecj.jar" />
<echo message="${md5-ecj.jar} ecj-${buildLabel}.jar" file="${dest}/checksum/ecj-${buildLabel}.jar.md5" />
- <checksum file="${dest}/ecjsrc-${buildLabel}.zip" property="md5-ecjsrc.zip" />
- <echo message="${md5-ecjsrc.zip} ecjsrc-${buildLabel}.zip" file="${dest}/checksum/ecjsrc-${buildLabel}.zip.md5" />
+ <checksum file="${dest}/ecjsrc-${buildLabel}.jar" property="md5-ecjsrc.jar" />
+ <echo message="${md5-ecjsrc.jar} ecjsrc-${buildLabel}.jar" file="${dest}/checksum/ecjsrc-${buildLabel}.jar.md5" />
</target>
<!-- ===================================================================== -->
@@ -113,13 +113,13 @@
</zip>
<delete dir="${unjarDestBin}" failonerror="false"/>
- <echo message="UPDATE ecjsrc-${buildLabel}.zip" />
+ <echo message="UPDATE ecjsrc-${buildLabel}.jar" />
<property name="unjarDestSrc" value="${basedir}/tempsrc"/>
<mkdir dir="${unjarDestSrc}"/>
<unzip
- src="${postingDirectory}/${buildLabel}/ecjsrc-${buildLabel}.zip"
+ src="${postingDirectory}/${buildLabel}/ecjsrc-${buildLabel}.jar"
dest="${unjarDestSrc}"/>
- <zip destfile="${postingDirectory}/${buildLabel}/ecjsrc-${buildLabel}.zip">
+ <zip destfile="${postingDirectory}/${buildLabel}/ecjsrc-${buildLabel}.jar">
<zipfileset dir="src" />
<zipfileset dir="${unjarDestSrc}" />
<zipfileset dir="${basedir}">

Back to the top