diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-05-29 05:33:49 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-05-29 05:33:49 +0000 |
commit | 1f848c2b3ed0e2db47e0b58163e6ab5ca5d1e4f9 (patch) | |
tree | b74424db444653b5219a80d0b4ce31c0c301480b /eclass | |
parent | MySQL hates you if your machine is called localhost per bug #213475. (diff) | |
download | historical-1f848c2b3ed0e2db47e0b58163e6ab5ca5d1e4f9.tar.gz historical-1f848c2b3ed0e2db47e0b58163e6ab5ca5d1e4f9.tar.bz2 historical-1f848c2b3ed0e2db47e0b58163e6ab5ca5d1e4f9.zip |
Fix whitespace.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/mysql.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index f19368f5ed7d..8ec6ab0aab36 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.93 2008/05/29 05:28:54 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.94 2008/05/29 05:33:49 robbat2 Exp $ # Author: Francesco Riosa (Retired) <vivo@gentoo.org> # Maintainer: MySQL Team <mysql-bugs@gentoo.org> @@ -853,8 +853,8 @@ mysql_pkg_config() { popd &>/dev/null [[ -f "${ROOT}/${MY_DATADIR}/mysql/user.frm" ]] \ || die "MySQL databases not installed" - chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2> /dev/null - chmod 0750 "${ROOT}/${MY_DATADIR}" 2> /dev/null + chown -R mysql:mysql "${ROOT}/${MY_DATADIR}" 2>/dev/null + chmod 0750 "${ROOT}/${MY_DATADIR}" 2>/dev/null if mysql_version_is_at_least "4.1.3" ; then options="--skip-ndbcluster" |