Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 127564 - net-dns/bind overrides MAKEOPTS
Summary: net-dns/bind overrides MAKEOPTS
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Konstantin Arkhipov (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-25 13:34 UTC by Sven Wegener
Modified: 2006-03-25 16:07 UTC (History)
2 users (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 Sven Wegener gentoo-dev 2006-03-25 13:34:47 UTC
Affected are:
- bind-9.2.6.ebuild
- bind-9.3.2.ebuild

        # idea from dev-libs/cyrus-sasl
        if has distcc ${FEATURES}; then
                einfo "You have \"distcc\" enabled"
                einfo "build with MAKEOPTS=\"-j1\""
                MAKEOPTS="-j1"
        else
                einfo "build with MAKEOPTS=${MAKEOPTS}"
        fi

        emake ${MAKEOPTS} || die "failed to compile bind"

Don't override MAKEOPTS, if you need to force -j1, please do so by using emake -j1. MAKEOPTS is a variable to be set by users and shouldn't be modified, and btw emake already includes MAKEOPTS in the call of make.

Please fix, thanks! :)
Comment 1 Konstantin Arkhipov (RETIRED) gentoo-dev 2006-03-25 16:07:54 UTC
fixed in 9.{2.6,3.2}-r1.
thanks for mentioning it, Sven.