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 | dc1a07a50414b7c002c4bf30d6674272434b4d9c (patch) | |
tree | 429aa5f687b39a8ae4835f6dcd0dafe5f7abd39f /eclass/java-utils-2.eclass | |
parent | stable on mips, bug 139146, more laxative for jakub...keep it flowing (diff) | |
download | historical-dc1a07a50414b7c002c4bf30d6674272434b4d9c.tar.gz historical-dc1a07a50414b7c002c4bf30d6674272434b4d9c.tar.bz2 historical-dc1a07a50414b7c002c4bf30d6674272434b4d9c.zip |
Fixed bug in dolauncher, as reported by Jakob Truelsen <antialize@gmail.com>.
Diffstat (limited to 'eclass/java-utils-2.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} |