diff options
Diffstat (limited to 'dev-java/sun-j2me-bin/files/java-config.patch')
-rw-r--r-- | dev-java/sun-j2me-bin/files/java-config.patch | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/dev-java/sun-j2me-bin/files/java-config.patch b/dev-java/sun-j2me-bin/files/java-config.patch new file mode 100644 index 0000000..6905b9f --- /dev/null +++ b/dev-java/sun-j2me-bin/files/java-config.patch @@ -0,0 +1,101 @@ +--- bin/ktoolbar 2008-02-08 19:49:45.000000000 +0100 ++++ bin/ktoolbar 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + +--- bin/prefs 2008-02-08 19:49:45.000000000 +0100 ++++ bin/prefs 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + +--- bin/utils 2008-02-08 19:49:45.000000000 +0100 ++++ bin/utils 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + +--- bin/wscompile 2008-02-08 19:49:45.000000000 +0100 ++++ bin/wscompile 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + + +--- bin/mekeytool 2008-02-08 19:49:45.000000000 +0100 ++++ bin/mekeytool 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + +--- bin/emulator 2008-02-08 19:49:45.000000000 +0100 ++++ bin/emulator 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + + +--- bin/defaultdevice 2008-02-08 19:49:45.000000000 +0100 ++++ bin/defaultdevice 2008-02-08 20:19:57.000000000 +0100 +@@ -1,6 +1,10 @@ + #!/bin/sh + +-javapathtowtk=`java-config --jdk-home`"/bin/" ++if [ "`uname -m`" = "x86_64" ]; then ++ javapathtowtk=`java-config --select-vm=emul-linux-x86-java --jdk-home`"/bin/" ++else ++ javapathtowtk=`java-config --jdk-home`"/bin/" ++fi + + PRG=$0 + + |