Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMat Booth2018-04-27 14:18:10 +0000
committerMat Booth2018-04-27 14:22:38 +0000
commitc48a52bcde9372e05071843dc94ffc8bd08dba8e (patch)
tree1d040f2b07698cb9e0486a270e3f13f28f760c13
parent886e6c5bac16f14c66405e5d72874a39c632835e (diff)
downloadeclipse.platform.swt-c48a52bcde9372e05071843dc94ffc8bd08dba8e.tar.gz
eclipse.platform.swt-c48a52bcde9372e05071843dc94ffc8bd08dba8e.tar.xz
eclipse.platform.swt-c48a52bcde9372e05071843dc94ffc8bd08dba8e.zip
Bug 534164 - Fix building the SWT bridge on 32bit intel Fedora systems
Change-Id: I99ddffbad24f5fd118a2dde791db117b14b95d34 Signed-off-by: Mat Booth <mat.booth@redhat.com>
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
index cf6037caf2..b8766a661f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/library/build.sh
@@ -111,7 +111,7 @@ case $MODEL in
SWT_ARCH=x86_64
AWT_ARCH=amd64
;;
- i?86)
+ i?86 | "x86")
SWT_ARCH=x86
AWT_ARCH=i386
;;

Back to the top