Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 465810 - sys-fs/quota[-rpc]: rpc code still being compiled
Summary: sys-fs/quota[-rpc]: rpc code still being compiled
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: All Linux
: Normal normal
Assignee: Gentoo's Team for Core System packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-04-13 16:34 UTC by pmn
Modified: 2013-04-15 22:38 UTC (History)
1 user (show)

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


Attachments
emerge --info (emerge.info,12.31 KB, text/plain)
2013-04-14 14:24 UTC, pmn
Details
build log (quota-4.00_.log,15.43 KB, text/plain)
2013-04-14 14:24 UTC, pmn
Details

Note You need to log in before you can comment on or make changes to this bug.
Description pmn 2013-04-13 16:34:54 UTC
based on this:
<http://devmanual.gentoo.org/quickstart/>
"The package's ./configure script takes the usual --enable-nls or --disable-nls argument. We use the use_enable utility function to generate this automatically, depending on the user's USE flags"

quota's configure doesn't seem to be using disable/enable but rather yes/no for param for enable only:
<http://sourceforge.net/p/linuxquota/code/ci/master/tree/configure.in>

"
AC_ARG_ENABLE(rpc,
	[  --enable-rpc=[yes/no]           Enable RPC support [default=yes].],
	,
	enable_rpc="yes")
"
so this in quota's ebuild fails to do disable rpc:

$(use_enable rpc) \

Reproducible: Always
Comment 1 Mike Gilbert gentoo-dev 2013-04-13 16:40:00 UTC
When you use AC_ARG_ENABLE, --disable-rpc is equivalent to --enable-rpc=no.

Attach your build log and emerge --info please.
Comment 2 pmn 2013-04-14 14:24:01 UTC
Created attachment 345550 [details]
emerge --info
Comment 3 pmn 2013-04-14 14:24:18 UTC
Created attachment 345552 [details]
build log
Comment 4 SpanKY gentoo-dev 2013-04-15 22:38:26 UTC
should be all set now in the tree; thanks for the report!

Commit message: Avoid building rpc related code when USE=-rpc
http://sources.gentoo.org/sys-fs/quota/quota-4.01.ebuild?r1=1.1&r2=1.2