Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'features')
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/gtk/build.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
index 7d47680a6..b36f21d0c 100644
--- a/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
+++ b/features/org.eclipse.equinox.executable.feature/library/gtk/build.sh
@@ -211,8 +211,15 @@ if [ "$defaultOSArch" = "ppc64" -o $defaultOSArch = "ppc64le" ]; then
fi
export M_ARCH
elif [ "$defaultOSArch" = "s390" ]; then
+ if [ "${JAVA_HOME}" = "" ]; then
+ export JAVA_HOME="/home/swtbuild/java5/s390/ibm-java2-s390-50"
+ fi
M_ARCH=-m31
export M_ARCH
+elif [ "$defaultOSArch" = "s390x" ]; then
+ if [ "${JAVA_HOME}" = "" ]; then
+ export JAVA_HOME="/home/swtbuild/java5/s390x/ibm-java2-s390x-50"
+ fi
elif [ "$defaultOSArch" = "ia64" ]; then
M_ARCH=-mlp64
export M_ARCH

Back to the top