diff options
author | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-03-13 17:57:51 +0000 |
---|---|---|
committer | Ingmar Vanhassel <ingmar@gentoo.org> | 2008-03-13 17:57:51 +0000 |
commit | 311b1f2612b81d8230e9f489e0f1cbf5f1f99170 (patch) | |
tree | 8f8ddc7dcef3c01fb3175607bdb160beed562796 /eclass | |
parent | QA cleanup: Fix quoting. (diff) | |
download | gentoo-2-311b1f2612b81d8230e9f489e0f1cbf5f1f99170.tar.gz gentoo-2-311b1f2612b81d8230e9f489e0f1cbf5f1f99170.tar.bz2 gentoo-2-311b1f2612b81d8230e9f489e0f1cbf5f1f99170.zip |
s/einfo/echo/
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde4-functions.eclass | 6 | ||||
-rw-r--r-- | eclass/kde4-meta.eclass | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/eclass/kde4-functions.eclass b/eclass/kde4-functions.eclass index 2441752fc173..89092e6b8190 100644 --- a/eclass/kde4-functions.eclass +++ b/eclass/kde4-functions.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.3 2008/03/10 21:40:05 zlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-functions.eclass,v 1.4 2008/03/13 17:57:51 ingmar Exp $ # @ECLASS: kde4-functions.eclass # @MAINTAINER: @@ -362,7 +362,7 @@ buildsycoca() { # We have to start a new dbus session, because the DBUS_SESSION_BUS_ADDRESS in the environment # could from from the user's environment (through su [without '-']), causing kbuildsycoca4 to hang. - einfo "Starting dbus session for kbuildsycoca4" + echo "Starting dbus session for kbuildsycoca4" local _i for _i in $(dbus-launch); do # We export both the ADDRESS _and_ the PID. We need the latter only to kill our session. @@ -377,7 +377,7 @@ buildsycoca() { ${KDEDIR}/bin/kbuildsycoca4 --global --noincremental &> /dev/null eend $? - einfo "Killing dbus session for kbuildsycoca4" + echo "Killing dbus session for kbuildsycoca4" debug-print "ADDRES ${DBUS_SESSION_BUS_ADDRESS}" debug-print "PID: ${DBUS_SESSION_BUS_PID}" kill ${DBUS_SESSION_BUS_PID} diff --git a/eclass/kde4-meta.eclass b/eclass/kde4-meta.eclass index 41af96cba85c..7224893c300f 100644 --- a/eclass/kde4-meta.eclass +++ b/eclass/kde4-meta.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.4 2008/03/10 21:43:10 zlin Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde4-meta.eclass,v 1.5 2008/03/13 17:57:51 ingmar Exp $ # # @ECLASS: kde4-meta.eclass # @MAINTAINER: @@ -161,7 +161,7 @@ kde4-meta_src_extract() { tarball="${KMNAME}-${PV}.tar.bz2" tarfile="${DISTDIR}"/${tarball} - einfo "Unpacking parts of ${tarball} to ${WORKDIR}" + echo "Unpacking parts of ${tarball} to ${WORKDIR}" kde4-meta_create_extractlists |