Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBogdan Gheorghe2012-11-06 16:30:52 +0000
committerBogdan Gheorghe2012-11-06 16:31:33 +0000
commit6157cc3bf335a70f0da28d44ffcc19ef32cbffe3 (patch)
tree448c8b8b9e917fc788bea3ea9afbb1d7610c1110 /bundles
parent1e214f1a2d19d10444072387f37ac81226a5c613 (diff)
downloadrt.equinox.framework-6157cc3bf335a70f0da28d44ffcc19ef32cbffe3.tar.gz
rt.equinox.framework-6157cc3bf335a70f0da28d44ffcc19ef32cbffe3.tar.xz
rt.equinox.framework-6157cc3bf335a70f0da28d44ffcc19ef32cbffe3.zip
Bug 393369 - 64 bit launcher on 4.3 M3 32 bit AIX build
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.equinox.executable/library/gtk/build.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.executable/library/gtk/build.sh b/bundles/org.eclipse.equinox.executable/library/gtk/build.sh
index a89c37c36..6661d93f2 100644
--- a/bundles/org.eclipse.equinox.executable/library/gtk/build.sh
+++ b/bundles/org.eclipse.equinox.executable/library/gtk/build.sh
@@ -126,7 +126,9 @@ case $OS in
"AIX")
makefile="make_aix.mak"
defaultOS="aix"
- defaultOSArch="ppc64"
+ if [ -z "$defaultOSArch" ]; then
+ defaultOSArch="ppc64"
+ fi
[ -d /bluebird/teamswt/swt-builddir/JDKs/AIX/PPC64/j564/sdk ] && defaultJavaHome="/bluebird/teamswt/swt-builddir/JDKs/AIX/PPC64/j564/sdk"
;;
"HP-UX")

Back to the top