Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 430904 - sys-libs/glibc-2.16.0 and -9999 set wrong NPTL_KERN_VER for hppa
Summary: sys-libs/glibc-2.16.0 and -9999 set wrong NPTL_KERN_VER for hppa
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: [OLD] Core system (show other bugs)
Hardware: HPPA Linux
: Normal normal (vote)
Assignee: Gentoo Toolchain Maintainers
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-08-11 09:50 UTC by Hans
Modified: 2012-08-11 16:53 UTC (History)
1 user (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 Hans 2012-08-11 09:50:18 UTC
sys-libs/glibc-2.15-r2.ebuild and older include the following:


NPTL_KERN_VER=${NPTL_KERN_VER:-"2.6.9"}        # min kernel version nptl requires
[...]
[[ ${CTARGET} == hppa* ]] && NPTL_KERN_VER=${NPTL_KERN_VER/2.6.9/2.6.20}

Which changes NPTL_KERN_VER from 2.6.9 to 2.6.20 for hppa.


>=sys-libs/glibc-2.16.0 currently include:

NPTL_KERN_VER=${NPTL_KERN_VER:-"2.6.16"}       # min kernel version nptl requires
[...]
[[ ${CTARGET} == hppa* ]] && NPTL_KERN_VER=${NPTL_KERN_VER/2.6.9/2.6.20}

Which fails to change the version from 2.6.16 to 2.6.20.


I noticed this by grepping through the ebuild. As I don't use hppa, I have no build.log, and my emerge --info is quite useless.

Thanks for your work!
Comment 1 SpanKY gentoo-dev 2012-08-11 16:29:24 UTC
should be all set now in the tree; thanks for the report!

Commit message: Fix default hppa nptl kernel version
http://sources.gentoo.org/sys-libs/glibc/glibc-2.16.0.ebuild?r1=1.1&r2=1.2
http://sources.gentoo.org/sys-libs/glibc/glibc-9999.ebuild?r1=1.11&r2=1.12