summaryrefslogtreecommitdiffstats
path: root/recipes-core/jamvm
diff options
context:
space:
mode:
authorRiku Voipio <riku.voipio@linaro.org>2013-09-30 13:46:11 +0000
committerHenning Heinold <heinold@inf.fu-berlin.de>2013-10-01 10:13:16 +0200
commita13ddc9e5e09ee92690e0128d115ab6e3f0c9541 (patch)
tree1d4f8c7b52062d2c1a83d715336262da384f3470 /recipes-core/jamvm
parent5cdc1e4702b05ff0e4b0e1c443e549ece9765e40 (diff)
downloadmeta-java-a13ddc9e5e09ee92690e0128d115ab6e3f0c9541.tar.gz
jamvm/java: allow spaces in arguments
Current IFS mangling blows up on the face: | configure:2341: javac -classpath .: Test.java | Invalid maximum heap size: -Xmx1024m-cp/srv/oe/b Simpler command line expansion works just as easy. * fixed placeholder path by Henning Heinold Signed-off-by: Henning Heinold <heinold@inf.fu-berlin.de>
Diffstat (limited to 'recipes-core/jamvm')
-rwxr-xr-xrecipes-core/jamvm/files/java3
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes-core/jamvm/files/java b/recipes-core/jamvm/files/java
index 27cf094..6c96947 100755
--- a/recipes-core/jamvm/files/java
+++ b/recipes-core/jamvm/files/java
@@ -1,6 +1,5 @@
1#!/bin/sh 1#!/bin/sh
2 2
3IFS=""
4export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:STAGING_LIBDIR_NATIVE/classpath:STAGING_LIBDIR_NATIVE/jamvm" 3export LD_LIBRARY_PATH="$LD_LIBRARY_PATH:STAGING_LIBDIR_NATIVE/classpath:STAGING_LIBDIR_NATIVE/jamvm"
5export BOOTCLASSPATH="STAGING_DATADIR_NATIVE/jamvm/classes.zip:STAGING_DATADIR_NATIVE/classpath/glibj.zip" 4export BOOTCLASSPATH="STAGING_DATADIR_NATIVE/jamvm/classes.zip:STAGING_DATADIR_NATIVE/classpath/glibj.zip"
6exec jamvm ${1+"$@"} 5exec jamvm "$@"