diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2012-08-29 14:15:39 +0100 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2012-08-29 14:24:37 +0100 |
commit | 684efb3706795bdd8cb0d4c026067fb4d70e23d1 (patch) | |
tree | a6aed164057960017a3677d3388536dcb2376c9c /java | |
parent | 15cd9dde5e0e4a7d510de71ef8991750971cf6d1 (diff) | |
download | libguestfs-684efb3706795bdd8cb0d4c026067fb4d70e23d1.tar.gz libguestfs-684efb3706795bdd8cb0d4c026067fb4d70e23d1.tar.xz libguestfs-684efb3706795bdd8cb0d4c026067fb4d70e23d1.zip |
java: Further java/java-home fixes.
In particular the JVM executable is now called $JAVA_EXE.
This fixes commit 40b9c14ca9af3b31ea1cf5336142d63313bbae39.
Diffstat (limited to 'java')
-rwxr-xr-x | java/run-bindtests | 2 | ||||
-rwxr-xr-x | java/run-java-tests | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/java/run-bindtests b/java/run-bindtests index 9557c9d0..10e72c71 100755 --- a/java/run-bindtests +++ b/java/run-bindtests @@ -18,5 +18,5 @@ set -e -$JAVA -Djava.library.path=.libs Bindtests > bindtests.tmp +$JAVA_EXE -Djava.library.path=.libs Bindtests > bindtests.tmp diff -u $srcdir/../bindtests bindtests.tmp diff --git a/java/run-java-tests b/java/run-java-tests index 6ebaadfe..46c34f21 100755 --- a/java/run-java-tests +++ b/java/run-java-tests @@ -20,5 +20,5 @@ set -e for f in $(ls -1 t/*.class | fgrep -v \$); do classname=$(basename $f .class) - $JAVA -Djava.library.path=.libs -ea $classname -done
\ No newline at end of file + $JAVA_EXE -Djava.library.path=.libs -ea $classname +done |