| 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 packages | Assignee: | 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: | --- | |
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.