Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 279712 - net-irc/eggdrop fails parallel install
Summary: net-irc/eggdrop fails parallel install
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Packages in net-irc
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2009-07-30 17:10 UTC by Diego Elio Pettenò (RETIRED)
Modified: 2009-11-17 00:27 UTC (History)
0 users

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


Attachments
Build log (eggdrop-1.6.18-r3:20090730-052020.log,66.08 KB, text/plain)
2009-07-30 17:10 UTC, Diego Elio Pettenò (RETIRED)
Details
Patch to eggdrop-1.6.19.ebuild to add a sed call to fix the above issue, and to remove the -j1 on the install target (eggdrop-1.6.19.ebuild.patch,605 bytes, patch)
2009-09-05 03:05 UTC, Kevin Pyle
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Diego Elio Pettenò (RETIRED) gentoo-dev 2009-07-30 17:10:10 UTC
Only close this bug when it's actually fixed.
Comment 1 Diego Elio Pettenò (RETIRED) gentoo-dev 2009-07-30 17:10:40 UTC
Created attachment 199666 [details]
Build log
Comment 2 Kevin Pyle 2009-09-05 03:03:26 UTC
Suppressing display of installation commands with @ is not very nice, since it makes it difficult to see what really failed.

The problem is that install-bin and install-data assume that the install-start target has already completed, but do not have a Make dependency to enforce that.  The 'ainstall' target that triggers install-bin and install-data does depend on install-start, so serial make happens to work.  The fix for the reported failure is to make install-bin and install-data depend directly on install-start.  I will attach a patch to the ebuild to do this.
Comment 3 Kevin Pyle 2009-09-05 03:05:07 UTC
Created attachment 203174 [details, diff]
Patch to eggdrop-1.6.19.ebuild to add a sed call to fix the above issue, and to remove the -j1 on the install target

With this patch, I can successfully run ebuild eggdrop-1.6.19.ebuild install with MAKEOPTS=-j.
Comment 4 Dawid Węgliński (RETIRED) gentoo-dev 2009-11-17 00:27:22 UTC
+  17 Nov 2009; Dawid Węgliński <cla@gentoo.org> eggdrop-1.6.19.ebuild:
+  Fix parallel install (bug #279712). Thanks to Kevin Pyle for proposed
+  patch.

Thanks Kevin!