The following commit has been merged in the master branch:
commit 766e1bccddaf0c75727f1b5600581200b1c30171
Author: Cédric Pineau <[email protected]>
Date:   Fri Jan 20 23:00:24 2012 +0100

    Support use without installation through J2SE_PACKAGE_LIBDIR=./lib 
./make-jpkg <java-binary>

diff --git a/make-jpkg b/make-jpkg
index 64c3763..e1e16ce 100755
--- a/make-jpkg
+++ b/make-jpkg
@@ -199,11 +199,10 @@ install -d -m 755 "$install_dir"
 
 # load and execute plugins
 echo -n "Loading plugins:"
-cd "$lib_dir"
-files=(*.sh)
+files=($lib_dir/*.sh)
 for file in "${files[@]}"; do
     echo -n " $file"
-    source "$lib_dir/$file"
+    source "$file"
 done
 
 echo

-- 
java-package packaging

_______________________________________________
pkg-java-commits mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

Reply via email to