Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 29484 - big in ifc-7.0.064-r1.ebuild
Summary: big in ifc-7.0.064-r1.ebuild
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Development (show other bugs)
Hardware: x86 Linux
: High normal (vote)
Assignee: Jon Portnoy (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2003-09-23 20:39 UTC by Derek Dolney
Modified: 2003-09-24 08:12 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Derek Dolney 2003-09-23 20:39:05 UTC
The rpm_unpack function doesn't take multiple arguments, so the line

	rpm_unpack intel-*.i386.rpm

should be changed to something like

	for x in intel-*.i386.rpm;
	do
		rpm_unpack ${x} || die "Failed to unpack rpms.";
	done

As it stands, this ebuild will not unpack and install the Intel debugger (idb).
Comment 1 Jon Portnoy (RETIRED) gentoo-dev 2003-09-24 08:12:54 UTC
Fixed. Also fixed the ICC ebuild.

Thanks.