diff options
author | Francesco Riosa <vivo@gentoo.org> | 2006-10-23 12:26:45 +0000 |
---|---|---|
committer | Francesco Riosa <vivo@gentoo.org> | 2006-10-23 12:26:45 +0000 |
commit | cab54c6295435cf134d4c412fbdf5096dcfc820d (patch) | |
tree | 4eff467770ca2f74db53b6c86a71b3fb25d92fee /eclass/mysql.eclass | |
parent | Adding SVN snapshot for kernel 2.6.18, see bug #150764 (diff) | |
download | historical-cab54c6295435cf134d4c412fbdf5096dcfc820d.tar.gz historical-cab54c6295435cf134d4c412fbdf5096dcfc820d.tar.bz2 historical-cab54c6295435cf134d4c412fbdf5096dcfc820d.zip |
removed quotes around socket, fix bug #152455
Diffstat (limited to 'eclass/mysql.eclass')
-rw-r--r-- | eclass/mysql.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index ffecba026254..8b171d6be629 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.42 2006/10/21 14:32:21 chtekk Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mysql.eclass,v 1.43 2006/10/23 12:26:45 vivo Exp $ # Author: Francesco Riosa <vivo@gentoo.org> # Maintainer: Luca Longinotti <chtekk@gentoo.org> @@ -169,7 +169,7 @@ configure_common() { myconf="${myconf} --with-extra-charsets=all" myconf="${myconf} --with-mysqld-user=mysql" myconf="${myconf} --with-server" - myconf="${myconf} --with-unix-socket-path='/var/run/mysqld/mysqld.sock'" + myconf="${myconf} --with-unix-socket-path=/var/run/mysqld/mysqld.sock" myconf="${myconf} --without-libwrap" if useq "static" ; then |