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 6D66D1387FD for ; Mon, 31 Mar 2014 18:21:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B0FF8E0ADE; Mon, 31 Mar 2014 18:21:23 +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 5A4A7E0ADE for ; Mon, 31 Mar 2014 18:21:23 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84B6A33EEC6 for ; Mon, 31 Mar 2014 18:21:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 0AFA3188A2 for ; Mon, 31 Mar 2014 18:21:20 +0000 (UTC) From: "Jory Pratt" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jory Pratt" Message-ID: <1396289990.6c3c5f7fc27013c8af74e20a82a6aed41e73c91a.anarchy@gentoo> Subject: [gentoo-commits] proj/mozilla:master commit in: dev-libs/nss/ X-VCS-Repository: proj/mozilla X-VCS-Files: dev-libs/nss/nss-3.16.ebuild X-VCS-Directories: dev-libs/nss/ X-VCS-Committer: anarchy X-VCS-Committer-Name: Jory Pratt X-VCS-Revision: 6c3c5f7fc27013c8af74e20a82a6aed41e73c91a X-VCS-Branch: master Date: Mon, 31 Mar 2014 18:21:20 +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: 439dc26c-2569-444c-81bf-4453b2e409ba X-Archives-Hash: 9738d9975e24c2a387ec8827d1b48c16 commit: 6c3c5f7fc27013c8af74e20a82a6aed41e73c91a Author: Jory A. Pratt gentoo org> AuthorDate: Mon Mar 31 18:19:50 2014 +0000 Commit: Jory Pratt gentoo org> CommitDate: Mon Mar 31 18:19:50 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mozilla.git;a=commit;h=6c3c5f7f upstream integration of x32 patch changed case on variable, fixed ebuild to match (bug 506250) --- dev-libs/nss/nss-3.16.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/nss/nss-3.16.ebuild b/dev-libs/nss/nss-3.16.ebuild index eefa5e7..3dadff6 100644 --- a/dev-libs/nss/nss-3.16.ebuild +++ b/dev-libs/nss/nss-3.16.ebuild @@ -101,7 +101,7 @@ nssbits() { echo > "${T}"/test.c || die ${!cc} ${!cppflags} ${!cflags} -c "${T}"/test.c -o "${T}"/test.o || die case $(file "${T}"/test.o) in - *32-bit*x86-64*) echo USE_x32=1;; + *32-bit*x86-64*) echo USE_X32=1;; *64-bit*|*ppc64*|*x86_64*) echo USE_64=1;; *32-bit*|*ppc*|*i386*) ;; *) die "Failed to detect whether your arch is 64bits or 32bits, disable distcc if you're using it, please";;