From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 4C44513800E for ; Tue, 31 Jul 2012 17:01:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40B1CE057F; Tue, 31 Jul 2012 17:01:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 0B705E057F for ; Tue, 31 Jul 2012 17:01:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4337D1B4025 for ; Tue, 31 Jul 2012 17:01:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 06A69E5437 for ; Tue, 31 Jul 2012 17:01:24 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1343754073.d625e1a53f6063f96b0ebe6858765358fc52b13c.robbat2@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql.eclass X-VCS-Directories: eclass/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: d625e1a53f6063f96b0ebe6858765358fc52b13c X-VCS-Branch: master Date: Tue, 31 Jul 2012 17:01:24 +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: 3a479b68-c92b-4f3d-8bd2-6e08a76186fd X-Archives-Hash: db7103f15aacff63face3a73fba909d7 commit: d625e1a53f6063f96b0ebe6858765358fc52b13c Author: Robin H. Johnson gentoo org> AuthorDate: Tue Jul 31 17:01:13 2012 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Tue Jul 31 17:01:13 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mysql.git;a=commit;h=d625e1a5 Bug #428742: missing whitespace. --- eclass/mysql.eclass | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/eclass/mysql.eclass b/eclass/mysql.eclass index b883ace..731e231 100644 --- a/eclass/mysql.eclass +++ b/eclass/mysql.eclass @@ -790,7 +790,7 @@ mysql_pkg_setup() { # bug 350844 case "${EAPI:-0}" in 0 | 1) - if use static && !built_with_use sys-libs/ncurses static-libs; then + if use static && ! built_with_use sys-libs/ncurses static-libs; then die "To build MySQL statically you need to enable static-libs for sys-libs/ncurses" fi ;;