diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-04-18 08:55:21 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-04-18 08:55:21 +0000 |
commit | f06e35f208367e7aba6d2cea93e7e448757b22c0 (patch) | |
tree | b9a1753ae79276e60986727b19db51fe4202581d /eclass/java-utils-2.eclass | |
parent | Silence dep checker warning when inside a sub shell. (diff) | |
download | historical-f06e35f208367e7aba6d2cea93e7e448757b22c0.tar.gz historical-f06e35f208367e7aba6d2cea93e7e448757b22c0.tar.bz2 historical-f06e35f208367e7aba6d2cea93e7e448757b22c0.zip |
Use elog instead of einfo in java-pkg_ensure-dep.
Diffstat (limited to 'eclass/java-utils-2.eclass')
-rw-r--r-- | eclass/java-utils-2.eclass | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/eclass/java-utils-2.eclass b/eclass/java-utils-2.eclass index 8afa7906a038..eb3f478728d2 100644 --- a/eclass/java-utils-2.eclass +++ b/eclass/java-utils-2.eclass @@ -6,7 +6,7 @@ # # Licensed under the GNU General Public License, v2 # -# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.71 2007/04/18 08:52:00 betelgeuse Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/java-utils-2.eclass,v 1.72 2007/04/18 08:55:21 betelgeuse Exp $ # ----------------------------------------------------------------------------- @@ -2367,9 +2367,9 @@ java-pkg_ensure-dep() { die "${dev_error}" elif [[ ${BASH_SUBSHELL} = 0 ]]; then eerror "${dev_error}" - einfo "Because you have this package installed the package will" - einfo "build without problems, but please report this to" - einfo "http://bugs.gentoo.org" + elog "Because you have this package installed the package will" + elog "build without problems, but please report this to" + elog "http://bugs.gentoo.org" fi fi @@ -2380,9 +2380,9 @@ java-pkg_ensure-dep() { die "${dev_error}" elif [[ ${BASH_SUBSHELL} = 0 ]]; then eerror "${dev_error}" - einfo "Because you have this package installed the package will" - einfo "build without problems, but please report this to" - einfo "http://bugs.gentoo.org" + elog "Because you have this package installed the package will" + elog "build without problems, but please report this to" + elog "http://bugs.gentoo.org" fi fi } |