Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 443792

Summary: =net-irc/nebula-0.5: ebuild calls make instead of emake
Product: Gentoo Linux Reporter: Jean-Pierre de la Croix (jdelacroix) <ajpl.delacroix>
Component: Current packagesAssignee: Packages in net-irc <net-irc>
Status: RESOLVED FIXED    
Severity: normal    
Priority: Normal    
Version: unspecified   
Hardware: All   
OS: Linux   
Whiteboard:
Package list:
Runtime testing required: ---

Description Jean-Pierre de la Croix (jdelacroix) 2012-11-18 15:10:22 UTC
From the ebuild:

src_install() {
	make install DESTDIR="${D}" || die "make install failed"
	dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}

Possible solution:

src_install() {
	emake DESTDIR="${D}" install || die "emake failed"
	dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
}

Tested ok with this modification to the ebuild.