Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 83413 - mutt ebuild should use emake
Summary: mutt ebuild should use emake
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High normal (vote)
Assignee: Aron Griffis (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-02-26 15:03 UTC by Bob Bell
Modified: 2005-03-18 01:41 UTC (History)
1 user (show)

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 Bob Bell 2005-02-26 15:03:24 UTC
16:41 <@Mr_Bones_> the maintainer of the mutt ebuild has failed to use emake.
                   ;-)
16:52 <@Mr_Bones_> filing a bug about mutt not using emake would also be good.
Comment 1 Christopher Korn 2005-03-16 23:50:24 UTC
Fixed in Attachment #53680 [details] for Bug #72422

Hope it makes it into portage.
Comment 2 Aron Griffis (RETIRED) gentoo-dev 2005-03-17 14:57:38 UTC
Fixed in 1.5.8-r2, thanks!
Comment 3 Octavio Ruiz (Ta^3) 2005-03-18 01:41:59 UTC
It's not suposed to be `einstall` instead of `emake` inside of src_install() function?

Anyway, `einstall` should not be a replacement of "make install DESTDIR=${D}', its just for when DESTDIR is not supported so... 

emake DESTDIR=${D} install || die "install failed"

should be just

make DESTDIR=${D} install || die "install failed"

in mail-client/mutt-1.5.8-r2

:-)