diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2006-08-22 14:18:48 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2006-08-22 14:18:48 +0000 |
commit | ac34fa387c8c89dace1e330fc0de69426d185ead (patch) | |
tree | 2eb4a250bad928cc42d62e86939d173053a088e7 /eclass | |
parent | stable on mips, bug 139146, more laxative for jakub...keep it flowing (diff) | |
download | gentoo-2-ac34fa387c8c89dace1e330fc0de69426d185ead.tar.gz gentoo-2-ac34fa387c8c89dace1e330fc0de69426d185ead.tar.bz2 gentoo-2-ac34fa387c8c89dace1e330fc0de69426d185ead.zip |
Fixed bug in dolauncher, as reported by Jakob Truelsen <antialize@gmail.com>.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index ea19b3f77591..d6ca8cbf7e61 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -561,7 +561,7 @@ java-pkg_dolauncher() { [[ -n "${pre}" ]] && [[ -f "${pre}" ]] && cat "${pre}" >> "${target}" echo "source /usr/share/java-config-2/launcher/launcher.bash" >> "${target}" - if [[ -n "${into}" ]]; then + if [[ -n "${target_dir}" ]]; then DESTTREE="${target_dir}" dobin "${target}" local ret=$? return ${ret} |