[pkg-java] r7000 - in trunk/java-wrappers: . debian
fourmond at alioth.debian.org
fourmond at alioth.debian.org
Mon Sep 15 22:07:51 UTC 2008
Author: fourmond
Date: 2008-09-15 22:07:50 +0000 (Mon, 15 Sep 2008)
New Revision: 7000
Modified:
trunk/java-wrappers/debian/changelog
trunk/java-wrappers/java-wrappers.sh
Log:
[java-wrappers] Fix various long-standing syntax errors
Modified: trunk/java-wrappers/debian/changelog
===================================================================
--- trunk/java-wrappers/debian/changelog 2008-09-11 09:13:07 UTC (rev 6999)
+++ trunk/java-wrappers/debian/changelog 2008-09-15 22:07:50 UTC (rev 7000)
@@ -1,3 +1,11 @@
+java-wrappers (0.1.8) experimental; urgency=low
+
+ * The 'oops, I missed a syntax error release' - fix a missing
+ fi in java-wrappers.sh
+ * Fixed a few other syntax errors
+
+ -- Vincent Fourmond <fourmond at debian.org> Tue, 16 Sep 2008 00:04:37 +0200
+
java-wrappers (0.1.7) experimental; urgency=low
* Rewrite of find_java_runtime in a much more flexible fashion...
Modified: trunk/java-wrappers/java-wrappers.sh
===================================================================
--- trunk/java-wrappers/java-wrappers.sh 2008-09-11 09:13:07 UTC (rev 6999)
+++ trunk/java-wrappers/java-wrappers.sh 2008-09-15 22:07:50 UTC (rev 7000)
@@ -90,14 +90,15 @@
while test "$1"
do
found_jvm=$(eval "echo -n \$__jvm_$1")
- if [ test -z "$found_jvm" ]; then
+ if [ -z "$found_jvm" ]; then
java_warning "JVM flavor '${1:-none}' not understood"
else
DIRS="$DIRS $found_jvm"
- shift
+ shift
+ fi
done
# Nothing means everything
- if test -z "$DIRS"; then
+ if [ -z "$DIRS" ]; then
DIRS=$all_runtimes
fi
# And pick up the first one that works reasonably
More information about the pkg-java-commits
mailing list