diff options
author | Brian Evans <grknight@gentoo.org> | 2017-03-28 10:51:22 -0400 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2017-03-28 10:51:22 -0400 |
commit | 243166f89e0159b01c841e71f4ce0bf10d0649d7 (patch) | |
tree | 94b5c91afad7d6be8f8fc5773ca8fac2a7838859 | |
parent | sys-devel/gettext: ppc stable (bug 613796). (diff) | |
download | gentoo-243166f89e0159b01c841e71f4ce0bf10d0649d7.tar.gz gentoo-243166f89e0159b01c841e71f4ce0bf10d0649d7.tar.bz2 gentoo-243166f89e0159b01c841e71f4ce0bf10d0649d7.zip |
eclass/mysql-multilib-r1: Fix quoting in initial config
-rw-r--r-- | eclass/mysql-multilib-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass index ad8b1aadb010..e2a066ae850d 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" ) |