diff options
author | Sven Gothel <[email protected]> | 2012-11-28 17:34:00 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2012-11-28 17:34:00 +0100 |
commit | c5abdedc7944dd9eff39800a8fd4e4f0dadd8b9a (patch) | |
tree | b97290cf6d4561982d304009a968711876081639 | |
parent | 2542e21e3c0276f82aba0010220fc9c58fb51202 (diff) |
etc/profile.jogl: Fix OpenIndiana ARCH i86pc -> x86 (used currently for SWT tests only)
-rwxr-xr-x | etc/profile.jogl | 4 |
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" |