Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!

Bug 320583

Summary: media-sound/alsa-driver - Error in gathering CONFIG_CHECK
Product: Gentoo Linux Reporter: Oleg Akimov <akimov.shop>
Component: [OLD] LibraryAssignee: Steve Dibb (RETIRED) <beandog>
Status: RESOLVED FIXED    
Severity: normal    
Priority: High    
Version: unspecified   
Hardware: All   
OS: All   
Whiteboard:
Package list:
Runtime testing required: ---

Description Oleg Akimov 2010-05-19 16:01:32 UTC
With some conditions ebuild failed to check kernel configuration cause CONFIG_CHECK can be build with error:

 * Checking for suitable kernel configuration options...
 *   CONFIG_FW_LOADERSOUND_PRIME:        is not set when it should be.

For example, in alsa-driver-1.0.22.1.ebuild

local CONFIG_CHECK="!SND SOUND ${CHECK_PNP} ${CHECK_ISA} ${CHECK_FW} ${CHECK_PARPORT}"
...
local CONFIG_CHECK+="SOUND_PRIME"
                  ^^^^^
               missing space

If i have ${CHECK_PARPORT} and oss support, i get bad concatenation of params without space.

Problem is solved by adding space:
local CONFIG_CHECK+=" SOUND_PRIME"

Reproducible: Always
Comment 1 Steve Dibb (RETIRED) gentoo-dev 2010-06-06 01:02:03 UTC
Nice catch, thanks :)

Fixed in CVS