commit: 243166f89e0159b01c841e71f4ce0bf10d0649d7
Author: Brian Evans <grknight <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 28 14:51:22 2017 +0000
Commit: Brian Evans <grknight <AT> gentoo <DOT> org>
CommitDate: Tue Mar 28 14:51:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=243166f8
eclass/mysql-multilib-r1: Fix quoting in initial config
eclass/mysql-multilib-r1.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass
index ad8b1aadb01..e2a066ae850 100644
--- a/eclass/mysql-multilib-r1.eclass
+++ b/eclass/mysql-multilib-r1.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# @ECLASS: mysql-multilib.eclass
@@ -942,7 +942,7 @@ mysql-multilib-r1_pkg_config() {
# --initialize-insecure will not set root password
# --initialize would set a random one in the log which we don't
need as we set it ourselves
cmd=( "${EROOT}usr/sbin/mysqld" )
- initialize_options="--initialize-insecure
'--init-file=${sqltmp}'"
+ initialize_options="--initialize-insecure
--init-file='${sqltmp}'"
sqltmp="" # the initialize will take care of it
else
cmd=( "${EROOT}usr/share/mysql/scripts/mysql_install_db" )