diff options
author | Michael Haubenwallner <haubi@gentoo.org> | 2015-01-26 09:56:12 +0000 |
---|---|---|
committer | Michael Haubenwallner <haubi@gentoo.org> | 2015-01-26 09:56:12 +0000 |
commit | 53a4f84149db546a4d80d526fde60f2071362802 (patch) | |
tree | b132f15d2ab33a148ac2b697295d353b8b9ef82e /profiles/prefix | |
parent | Stable for x86, wrt bug #535024 (diff) | |
download | gentoo-2-53a4f84149db546a4d80d526fde60f2071362802.tar.gz gentoo-2-53a4f84149db546a4d80d526fde60f2071362802.tar.bz2 gentoo-2-53a4f84149db546a4d80d526fde60f2071362802.zip |
profiles/prefix/linux/profile.bashrc: Do not elog but einfo 'old host glibc (gnu89-inline)' message, bug#537660.
Diffstat (limited to 'profiles/prefix')
-rw-r--r-- | profiles/prefix/ChangeLog | 5 | ||||
-rw-r--r-- | profiles/prefix/linux/profile.bashrc | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/profiles/prefix/ChangeLog b/profiles/prefix/ChangeLog index 3ef50ede1b33..63fb86fbe49b 100644 --- a/profiles/prefix/ChangeLog +++ b/profiles/prefix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for profiles/prefix # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v 1.445 2015/01/12 21:26:32 haubi Exp $ +# $Header: /var/cvsroot/gentoo-x86/profiles/prefix/ChangeLog,v 1.446 2015/01/26 09:56:12 haubi Exp $ + + 26 Jan 2015; Michael Haubenwallner <haubi@gentoo.org> linux/profile.bashrc: + Do not elog but einfo 'old host glibc (gnu89-inline)' message, bug#537660. 03 Jan 2015; Ruud Koolen <redlizard@gentoo.org> linux-standalone/amd64/make.defaults, linux-standalone/x86/make.defaults: diff --git a/profiles/prefix/linux/profile.bashrc b/profiles/prefix/linux/profile.bashrc index 5b6dd65fc13d..4e9218257749 100644 --- a/profiles/prefix/linux/profile.bashrc +++ b/profiles/prefix/linux/profile.bashrc @@ -17,7 +17,7 @@ fi if [[ ${EBUILD_PHASE} == setup ]]; then VERS=$(/usr/bin/ldd --version | head -n1 | grep -o ") [0-9]\.[0-9]\+" | cut -d. -f2 ) if [[ $VERS -lt 6 && "${CFLAGS} " != *'gnu89-inline '* ]]; then # compare host glibc 2.x to 2.6 - elog "Your host glibc is too old; enabling -fgnu89-inline compiler flag. bug 473524" + einfo "Your host glibc is too old; enabling -fgnu89-inline compiler flag. bug 473524" CFLAGS="${CFLAGS} -fgnu89-inline" # for C only fi fi |