diff options
author | Francesco Riosa <vivo@gentoo.org> | 2006-02-12 14:37:46 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2006-02-12 14:37:46 +0000 |
commit | b18b32f9471b067ab58cefd8f4337b47ebfe750e (patch) | |
tree | 29dea713bb4c8812d26bfc9d3ca86682c5aca6af | |
parent | Removed old ebuilds. (diff) | |
download | gentoo-2-b18b32f9471b067ab58cefd8f4337b47ebfe750e.tar.gz gentoo-2-b18b32f9471b067ab58cefd8f4337b47ebfe750e.tar.bz2 gentoo-2-b18b32f9471b067ab58cefd8f4337b47ebfe750e.zip |
fix Bug 122542, typo in einfo
-rw-r--r-- | eclass/mysql.eclass | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index c9160d45c8ba..1ecd3f1517b9 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.17 2006/02/09 13:15:43 vivo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.18 2006/02/12 14:37:46 vivo Exp $ # Author: Francesco Riosa <vivo at gentoo.org> # Maintainer: Francesco Riosa <vivo at gentoo.org> @@ -561,8 +561,8 @@ mysql_pkg_postinst() { # eselect mysql set 1 # else # einfo "The version of mysql emerged now stils is _NOT_ the default" - einfo "you may want to run \"eselect myqsl list\" followed by a " - einfo "\"eselect myqsl set 1\" to chose the default mysql server" + einfo "you may want to run \"eselect mysql list\" followed by a " + einfo "\"eselect mysql set 1\" to choose the default mysql server" # fi #fi fi @@ -693,7 +693,7 @@ mysql_pkg_prerm() { mysql_pkg_postrm() { mysql_lib_symlinks if [[ ${SLOT} -gt 0 ]] ; then - einfo "you may want to run \"eselect myqsl list\" followed by a " - einfo "\"eselect myqsl list\" to chose the default mysql server" + einfo "you may want to run \"eselect mysql list\" followed by a " + einfo "\"eselect mysql list\" to choose the default mysql server" fi } |