diff options
author | Pacho Ramos <pacho@gentoo.org> | 2012-04-02 22:13:57 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2012-04-02 22:13:57 +0000 |
commit | 1e69d1b35598e966c29ef941b37738f6145b350c (patch) | |
tree | be7ccf5d6c9c2e632a764870c0a924b37ecf299c /eclass | |
parent | Version bump. (diff) | |
download | gentoo-2-1e69d1b35598e966c29ef941b37738f6145b350c.tar.gz gentoo-2-1e69d1b35598e966c29ef941b37738f6145b350c.tar.bz2 gentoo-2-1e69d1b35598e966c29ef941b37738f6145b350c.zip |
Use einfo instead of ewarn as discussed in http://archives.gentoo.org/gentoo-dev/msg_512b5e4049617666f6637618bd62857a.xml
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 7 | ||||
-rw-r--r-- | eclass/eutils.eclass | 4 |
2 files changed, 8 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index a3374f290862..af090db802f2 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for eclass directory # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.197 2012/04/02 17:48:06 slyfox Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.198 2012/04/02 22:13:57 pacho Exp $ + + 02 Apr 2012; Pacho Ramos <pacho@gentoo.org> eutils.eclass: + Use einfo instead of ewarn as discussed in + http://archives.gentoo.org/gentoo-dev/msg_512b5e4049617666f6637618bd62857a.xm + l 02 Apr 2012; Sergei Trofimovich <slyfox@gentoo.org> darcs.eclass: Switch from ESCM_OFFLINE var to EVCS_OFFLINE (bug #410467 by Ulrich Müller). diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index cb458f019e67..5dc9498fbd61 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.387 2012/03/23 02:33:49 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.388 2012/04/02 22:13:57 pacho Exp $ # @ECLASS: eutils.eclass # @MAINTAINER: @@ -1002,7 +1002,7 @@ strip-linguas() { fi done [[ -n ${nols} ]] \ - && ewarn "Sorry, but ${PN} does not support the LINGUAS:" ${nols} + && einfo "Sorry, but ${PN} does not support the LINGUAS:" ${nols} export LINGUAS=${newls:1} } |