Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 144734 - oops in java-pkg_dolauncher
Summary: oops in java-pkg_dolauncher
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Eclasses (show other bugs)
Hardware: All Linux
: High normal
Assignee: Java team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks: 144738
  Show dependency tree
 
Reported: 2006-08-22 04:06 UTC by Jakob Truelsen
Modified: 2006-08-22 07:20 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
Fixes the bug (java-utils-2.eclass.patch,483 bytes, patch)
2006-08-22 04:09 UTC, Jakob Truelsen
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Jakob Truelsen 2006-08-22 04:06:18 UTC
it appears that someone has mahe a bug in

/usr/portage/eclass/java-utils-2.eclass

java-pkg_dolauncher

the line 
if [[ -n "${into}" ]]; then
should be
if [[ -n "${target_dir}" ]]; then
Comment 1 Jakob Truelsen 2006-08-22 04:09:43 UTC
Created attachment 94841 [details, diff]
Fixes the bug
Comment 2 Josh Nichols (RETIRED) gentoo-dev 2006-08-22 07:20:13 UTC
Fixed in CVS. Thanks for reporting.

At some point before these new eclasses hit the main tree, I went through and made sure variables were named sanely. 'target_dir' used to be 'into' in this case, and I must have missed it.