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 0CB49139B2A for ; Fri, 18 Sep 2015 15:02:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F11521C008; Fri, 18 Sep 2015 15:02:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1221E21C008 for ; Fri, 18 Sep 2015 15:02:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BC223340C97 for ; Fri, 18 Sep 2015 15:01:57 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 035A9186 for ; Fri, 18 Sep 2015 15:01:56 +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: <1442588500.cf9f250ef4b95510b52e6e9fe96796294509260b.grknight@gentoo> Subject: [gentoo-commits] proj/mysql:master commit in: eclass/ X-VCS-Repository: proj/mysql X-VCS-Files: eclass/mysql-multilib.eclass X-VCS-Directories: eclass/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: cf9f250ef4b95510b52e6e9fe96796294509260b X-VCS-Branch: master Date: Fri, 18 Sep 2015 15:01:56 +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: ccf45ce0-cd95-4190-862f-ba98fba2fff7 X-Archives-Hash: f04b37841e17c70b0944ad98dda86013 commit: cf9f250ef4b95510b52e6e9fe96796294509260b Author: Brian Evans gentoo org> AuthorDate: Fri Sep 18 15:01:40 2015 +0000 Commit: Brian Evans gentoo org> CommitDate: Fri Sep 18 15:01:40 2015 +0000 URL: https://gitweb.gentoo.org/proj/mysql.git/commit/?id=cf9f250e Add --missing=true to built_with_use wrt bug 560732 This fixes the case of upgrading from a version without the flag to a version with the flag. Signed-off-by: Brian Evans gentoo.org> eclass/mysql-multilib.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/mysql-multilib.eclass b/eclass/mysql-multilib.eclass index d880267..2e73ccf 100644 --- a/eclass/mysql-multilib.eclass +++ b/eclass/mysql-multilib.eclass @@ -795,7 +795,7 @@ mysql-multilib_pkg_preinst() { if [[ -z ${REPLACING_VERSIONS} && -e "${EROOT}usr/$(get_libdir)/libmysqlclient.so" ]] ; then SHOW_ABI_MESSAGE=1 elif [[ ${REPLACING_VERSIONS} && -e "${EROOT}usr/$(get_libdir)/libmysqlclient.so" ]] && \ - in_iuse client-libs && ! built_with_use ${CATEGORY}/${PN} client-libs ; then + in_iuse client-libs && ! built_with_use --missing=true ${CATEGORY}/${PN} client-libs ; then SHOW_ABI_MESSAGE=1 fi