| Summary: | bind tools 9.3.1 fails to build in parallel | ||
|---|---|---|---|
| Product: | Gentoo Linux | Reporter: | SpanKY <vapier> |
| Component: | Current packages | Assignee: | Konstantin Arkhipov (RETIRED) <voxus> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | stian |
| Priority: | High | ||
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Package list: | Runtime testing required: | --- | |
|
Description
SpanKY
2005-07-04 00:03:22 UTC
I don't think bind likes to parallell build since it links files across directories. make -j1 ? sticking -j1 into src_compile would resolve the situation but it isnt really a proper fix ;) --- /usr/portage/net-dns/bind-tools/bind-tools-9.3.1.ebuild 2005-04-24 19:
36:19.000000000 +1000
+++ /usr/local/portage/net-dns/bind-tools/bind-tools-9.3.1.ebuild 2005-07-
06 19:29:08.583274377 +1000
@@ -23,11 +23,11 @@
econf ${myconf} || die "Configure failed"
+ export MAKEOPTS="${MAKEOPTS} -j1"
+
cd ${S}/lib
emake || die "make failed in /lib/isc"
- export MAKEOPTS="${MAKEOPTS} -j1"
-
cd ${S}/bin/dig
emake || die "make failed in /bin/dig"
fixed it for me ;)
fixed without version bump thanks to everyone @vapier: i don't know, how to fix it in better way, than -j1. reopen, please, if you know. |