summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2012-06-23 22:21:50 +0000
committerMike Frysinger <vapier@gentoo.org>2012-06-23 22:21:50 +0000
commit3b15a0b8cf2e9c1868f54cb4cbfb32ae4d5f68e1 (patch)
tree1757c6263efbb5aa95be70aba9637b3f965d1de2 /eclass
parentsimplify LANGS stuff, fixes bug #423051 (diff)
downloadgentoo-2-3b15a0b8cf2e9c1868f54cb4cbfb32ae4d5f68e1.tar.gz
gentoo-2-3b15a0b8cf2e9c1868f54cb4cbfb32ae4d5f68e1.tar.bz2
gentoo-2-3b15a0b8cf2e9c1868f54cb4cbfb32ae4d5f68e1.zip
use eqawarn rather than ewarn for append-ldflags checking #423159 by Pacho Ramos
Diffstat (limited to 'eclass')
-rw-r--r--eclass/flag-o-matic.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index 454083d5c77d..5ad51225eb99 100644
--- a/eclass/flag-o-matic.eclass
+++ b/eclass/flag-o-matic.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/flag-o-matic.eclass,v 1.176 2012/06/18 06:45:28 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/flag-o-matic.eclass,v 1.177 2012/06/23 22:21:50 vapier Exp $
# @ECLASS: flag-o-matic.eclass
# @MAINTAINER:
@@ -197,7 +197,7 @@ append-ldflags() {
local flag
for flag in "$@"; do
[[ ${flag} == -l* ]] && \
- ewarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS"
+ eqawarn "Appending a library link instruction (${flag}); libraries to link to should not be passed through LDFLAGS"
done
export LDFLAGS="${LDFLAGS} $*"