From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0C178139694 for ; Tue, 28 Mar 2017 14:36:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7883721C04E; Tue, 28 Mar 2017 14:36:32 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5517F21C04E for ; Tue, 28 Mar 2017 14:36:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 00896340F43 for ; Tue, 28 Mar 2017 14:36:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BF7687300 for ; Tue, 28 Mar 2017 14:36:29 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1490711774.f6991af2a166e3adb9420be99d68499a066a2b3b.grknight@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql-multilib-r1.eclass X-VCS-Directories: eclass/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: f6991af2a166e3adb9420be99d68499a066a2b3b X-VCS-Branch: master Date: Tue, 28 Mar 2017 14:36:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8a1b452a-0a39-42fb-af76-ff404071cf20 X-Archives-Hash: 5c3c596be4e5fdabcea20e2b19ea5ca9 commit: f6991af2a166e3adb9420be99d68499a066a2b3b Author: Brian Evans gentoo org> AuthorDate: Tue Mar 28 14:36:14 2017 +0000 Commit: Brian Evans gentoo org> CommitDate: Tue Mar 28 14:36:14 2017 +0000 URL: https://gitweb.gentoo.org/proj/mysql.git/commit/?id=f6991af2 eclass/mysql-multilib-r1: Fix quoting in initial config eclass/mysql-multilib-r1.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/mysql-multilib-r1.eclass b/eclass/mysql-multilib-r1.eclass index 1726c14..b783705 100644 --- a/eclass/mysql-multilib-r1.eclass +++ b/eclass/mysql-multilib-r1.eclass @@ -950,7 +950,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" )