summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2012-01-30 22:04:32 +0000
committerMike Gilbert <floppym@gentoo.org>2012-01-30 22:04:32 +0000
commit361f5cd0297ee06a29d1e4757c8573efad9c8542 (patch)
treebbaf791dcf217aeb9b1232f64d7c6f14fdea269a /eclass/python.eclass
parentold (diff)
downloadgentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.tar.gz
gentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.tar.bz2
gentoo-2-361f5cd0297ee06a29d1e4757c8573efad9c8542.zip
Avoid inheriting eutils from python.eclass.
Diffstat (limited to 'eclass/python.eclass')
-rw-r--r--eclass/python.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/python.eclass b/eclass/python.eclass
index 66a316b95344..c92cab54560a 100644
--- a/eclass/python.eclass
+++ b/eclass/python.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/python.eclass,v 1.146 2012/01/30 20:18:38 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.147 2012/01/30 22:04:32 floppym Exp $
# @ECLASS: python.eclass
# @MAINTAINER:
@@ -11,7 +11,7 @@
# Must call inherit before EXPORT_FUNCTIONS to avoid QA warning.
if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then
- inherit eutils multilib
+ inherit multilib
fi
# Export pkg_setup every time to avoid issues with eclass inheritance order.
@@ -560,7 +560,7 @@ python_convert_shebangs() {
done
if [[ "${shebangs_converted}" == "0" ]]; then
- eqawarn "${FUNCNAME}(): Python scripts not found"
+ ewarn "${FUNCNAME}(): Python scripts not found"
fi
}