summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-08-19 13:36:10 +0000
committerMike Frysinger <vapier@gentoo.org>2006-08-19 13:36:10 +0000
commitee2380d0e89fa10290aed915060ad8ebeeb7645d (patch)
tree9131bb6c7bf73c5f380ac390e94d2148ea249999 /eclass
parentia64 stable #134279 (diff)
downloadgentoo-2-ee2380d0e89fa10290aed915060ad8ebeeb7645d.tar.gz
gentoo-2-ee2380d0e89fa10290aed915060ad8ebeeb7645d.tar.bz2
gentoo-2-ee2380d0e89fa10290aed915060ad8ebeeb7645d.zip
use ewarn instead of einfo as pointed out by Bo Ørsted Andresen #143805
Diffstat (limited to 'eclass')
-rw-r--r--eclass/toolchain.eclass20
1 files changed, 10 insertions, 10 deletions
diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 5d8056d398e2..b4544fc368f4 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.300 2006/08/04 21:58:03 kugelfang Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/toolchain.eclass,v 1.301 2006/08/19 13:36:10 vapier Exp $
HOMEPAGE="http://gcc.gnu.org/"
LICENSE="GPL-2 LGPL-2.1"
@@ -846,8 +846,8 @@ gcc-compiler_pkg_postinst() {
if ! is_crosscompile ; then
echo
- einfo "If you have issues with packages unable to locate libstdc++.la,"
- einfo "then try running 'fix_libtool_files.sh' on the old gcc versions."
+ ewarn "If you have issues with packages unable to locate libstdc++.la,"
+ ewarn "then try running 'fix_libtool_files.sh' on the old gcc versions."
echo
fi
@@ -861,14 +861,14 @@ gcc-compiler_pkg_postinst() {
if ! is_crosscompile && ! use multislot && [[ ${GCCMAJOR}.${GCCMINOR} == 3.4 ]] ; then
echo
- einfo "You should make sure to rebuild all your C++ packages when"
- einfo "upgrading between different versions of gcc. For example,"
- einfo "when moving to gcc-3.4 from gcc-3.3, emerge gentoolkit and run:"
- einfo " # revdep-rebuild --library libstdc++.so.5"
+ ewarn "You should make sure to rebuild all your C++ packages when"
+ ewarn "upgrading between different versions of gcc. For example,"
+ ewarn "when moving to gcc-3.4 from gcc-3.3, emerge gentoolkit and run:"
+ ewarn " # revdep-rebuild --library libstdc++.so.5"
echo
- einfo "For more information on the steps to take when upgrading "
- einfo "from gcc-3.3 please refer to: "
- einfo "http://www.gentoo.org/doc/en/gcc-upgrading.xml"
+ ewarn "For more information on the steps to take when upgrading "
+ ewarn "from gcc-3.3 please refer to: "
+ ewarn "http://www.gentoo.org/doc/en/gcc-upgrading.xml"
echo
fi