Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorspingel2011-02-01 04:18:03 +0000
committerspingel2011-02-01 04:18:03 +0000
commit27fed068da1bf2a2365641d993f6a4030bf77ef1 (patch)
tree8b9c6df37a98616061b62a9cc2691368a9203030
parent0b810281416d31e0caa1dfb6c71c75e573828eb1 (diff)
downloadorg.eclipse.mylyn-27fed068da1bf2a2365641d993f6a4030bf77ef1.tar.gz
org.eclipse.mylyn-27fed068da1bf2a2365641d993f6a4030bf77ef1.tar.xz
org.eclipse.mylyn-27fed068da1bf2a2365641d993f6a4030bf77ef1.zip
fixed JDK location
-rw-r--r--org.eclipse.mylyn.releng/bin/generate-p2-metadata.sh5
-rw-r--r--org.eclipse.mylyn.releng/bin/sign-update-site.sh2
2 files changed, 4 insertions, 3 deletions
diff --git a/org.eclipse.mylyn.releng/bin/generate-p2-metadata.sh b/org.eclipse.mylyn.releng/bin/generate-p2-metadata.sh
index 8b660d60..b9c3070a 100644
--- a/org.eclipse.mylyn.releng/bin/generate-p2-metadata.sh
+++ b/org.eclipse.mylyn.releng/bin/generate-p2-metadata.sh
@@ -1,3 +1,5 @@
+#!/bin/bash -e
+
#*******************************************************************************
# Copyright (c) 2009 Tasktop Technologies and others.
# All rights reserved. This program and the accompanying materials
@@ -8,7 +10,6 @@
# Contributors:
# Tasktop Technologies - initial API and implementation
#*******************************************************************************
-#!/bin/bash -e
if [ $# -lt 1 ]
then
@@ -17,7 +18,7 @@ else
ROOT=$1
fi
-JAVA_HOME=/opt/ibm/java2-ppc-50
+JAVA_HOME=/shared/tools/mylyn/tools/jdk
ECLIPSE_HOME=/shared/tools/mylyn/eclipse
pack() {
diff --git a/org.eclipse.mylyn.releng/bin/sign-update-site.sh b/org.eclipse.mylyn.releng/bin/sign-update-site.sh
index 972b1ab1..2c1045df 100644
--- a/org.eclipse.mylyn.releng/bin/sign-update-site.sh
+++ b/org.eclipse.mylyn.releng/bin/sign-update-site.sh
@@ -40,7 +40,7 @@ SRC=/home/data/httpd/download.eclipse.org/tools/mylyn/update-archive/$MAJOR_VERS
DST=/opt/public/download-staging.priv/tools/mylyn
OUT=$DST/output
TMP=$DST/tmp/$MAJOR_VERSION.$QUALIFIER
-JAVA_HOME=/shared/common/jdk-1.5.0-22.x86_64
+JAVA_HOME=/shared/tools/mylyn/tools/jdk
ECLIPSE_HOME=/shared/tools/mylyn/eclipse
unzip() {

Back to the top