diff options
author | Zac Medico <zmedico@gentoo.org> | 2009-08-15 18:15:39 +0000 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2009-08-15 18:15:39 +0000 |
commit | 68a3a0a29a7d422a09aeb5c2b14010904bb683b7 (patch) | |
tree | 698b2060ca0f03726b093535c419a54ffc42793e | |
parent | 74ecc5568944b42e38cd99a4c07a6249bc9a56ed (diff) | |
download | portage-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.tar.gz portage-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.tar.bz2 portage-68a3a0a29a7d422a09aeb5c2b14010904bb683b7.zip |
Use elog in _eapi0_pkg_nofetch().
svn path=/main/trunk/; revision=14068
-rwxr-xr-x | bin/ebuild.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 0483046fa..9f91cf92d 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 } |