aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2012-11-28 17:34:00 +0100
committerSven Gothel <[email protected]>2012-11-28 17:34:00 +0100
commitc5abdedc7944dd9eff39800a8fd4e4f0dadd8b9a (patch)
treeb97290cf6d4561982d304009a968711876081639
parent2542e21e3c0276f82aba0010220fc9c58fb51202 (diff)
etc/profile.jogl: Fix OpenIndiana ARCH i86pc -> x86 (used currently for SWT tests only)
-rwxr-xr-xetc/profile.jogl4
1 files changed, 4 insertions, 0 deletions
diff --git a/etc/profile.jogl b/etc/profile.jogl
index 7dd51919d..413c0538d 100755
--- a/etc/profile.jogl
+++ b/etc/profile.jogl
@@ -24,6 +24,10 @@ function concat_jogl_list()
}
ARCH=`uname -m`
+if [ "$ARCH" = "i86pc" ] ; then
+ ARCH="x86"
+fi
+
KERNEL=`uname -s | awk ' { printf "%s",tolower($0) ; } '`
if [ "$KERNEL" = "sunos" ] ; then
KERNEL="solaris"