summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Haubenwallner <haubi@gentoo.org>2015-01-26 09:56:12 +0000
committerMichael Haubenwallner <haubi@gentoo.org>2015-01-26 09:56:12 +0000
commit0ed9e2f9c9325fa35d7396321ac5ff4a3db70e65 (patch)
treeeca52024a10a54d763b804fcdbf2439c227499ba /profiles/prefix
parentStable for x86, wrt bug #535024 (diff)
downloadhistorical-0ed9e2f9c9325fa35d7396321ac5ff4a3db70e65.tar.gz
historical-0ed9e2f9c9325fa35d7396321ac5ff4a3db70e65.tar.bz2
historical-0ed9e2f9c9325fa35d7396321ac5ff4a3db70e65.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/ChangeLog5
-rw-r--r--profiles/prefix/linux/profile.bashrc2
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