summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-08-15 18:15:39 +0000
committerZac Medico <zmedico@gentoo.org>2009-08-15 18:15:39 +0000
commit68a3a0a29a7d422a09aeb5c2b14010904bb683b7 (patch)
tree698b2060ca0f03726b093535c419a54ffc42793e /bin/ebuild.sh
parentPrepare 308 messages to localization. (diff)
downloadportage-idfetch-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.tar.gz
portage-idfetch-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.tar.bz2
portage-idfetch-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.zip
Use elog in _eapi0_pkg_nofetch().
svn path=/main/trunk/; revision=14068
Diffstat (limited to 'bin/ebuild.sh')
-rwxr-xr-xbin/ebuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh
index 0483046f..9f91cf92 100755
--- a/bin/ebuild.sh
+++ b/bin/ebuild.sh
@@ -586,10 +586,10 @@ einstall() {
_eapi0_pkg_nofetch() {
[ -z "${SRC_URI}" ] && return
- echo "!!! The following are listed in SRC_URI for ${PN}:"
+ elog "The following are listed in SRC_URI for ${PN}:"
local x
for x in $(echo ${SRC_URI}); do
- echo "!!! ${x}"
+ elog " ${x}"
done
}