aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenneth Russel <[email protected]>2006-01-05 01:21:39 +0000
committerKenneth Russel <[email protected]>2006-01-05 01:21:39 +0000
commitbabb60881a230fd8b66c545e23e7af6a5815e968 (patch)
tree6bc0034739bfc3b2f19378f0a19dec4775d30ffa /src
parent0fcdbdcc36a84b94646c55233888bd3755f28136 (diff)
Fixed bug in JOGLAppletLauncher found by Travis Bryson where
Solaris/x86 platform was downloading Solaris/SPARC native libraries (cut-and-paste bug) git-svn-id: file:///usr/local/projects/SUN/JOGL/git-svn/svn-server-sync/jogl/trunk@516 232f8b59-042b-4e1e-8c03-345bb8c30851
Diffstat (limited to 'src')
-rwxr-xr-xsrc/classes/com/sun/opengl/utils/JOGLAppletLauncher.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/classes/com/sun/opengl/utils/JOGLAppletLauncher.java b/src/classes/com/sun/opengl/utils/JOGLAppletLauncher.java
index 0888d6e51..11eff0e41 100755
--- a/src/classes/com/sun/opengl/utils/JOGLAppletLauncher.java
+++ b/src/classes/com/sun/opengl/utils/JOGLAppletLauncher.java
@@ -173,7 +173,7 @@ public class JOGLAppletLauncher extends Applet {
new NativeLibInfo("mac", null, "jogl-natives-macosx.jar", "lib", ".jnilib"),
new NativeLibInfo("linux", null, "jogl-natives-linux.jar", "lib", ".so"),
new NativeLibInfo("sunos", "sparc", "jogl-natives-solsparc.jar", "lib", ".so"),
- new NativeLibInfo("sunos", "x86", "jogl-natives-solsparc.jar", "lib", ".so")
+ new NativeLibInfo("sunos", "x86", "jogl-natives-solx86.jar", "lib", ".so")
};
private NativeLibInfo nativeLibInfo;