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 41BF1138330 for ; Thu, 8 Sep 2016 22:20:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 734A6E0AD7; Thu, 8 Sep 2016 22:20:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 1B541E0AD7 for ; Thu, 8 Sep 2016 22:20:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7BF6A340A03 for ; Thu, 8 Sep 2016 22:20:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B4F26246E for ; Thu, 8 Sep 2016 22:20:11 +0000 (UTC) From: "Ian Stakenvicius" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ian Stakenvicius" Message-ID: <1473373206.605002e1116b8eb3b37d572eefc8372bd4cbcfe9.axs@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/mozconfig-v6.48.eclass X-VCS-Directories: eclass/ X-VCS-Committer: axs X-VCS-Committer-Name: Ian Stakenvicius X-VCS-Revision: 605002e1116b8eb3b37d572eefc8372bd4cbcfe9 X-VCS-Branch: master Date: Thu, 8 Sep 2016 22:20:11 +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: 46e24680-be37-4372-95f0-8251efc186fd X-Archives-Hash: 2accdc7be6cb880f1ea22c818d28f846 commit: 605002e1116b8eb3b37d572eefc8372bd4cbcfe9 Author: Ian Stakenvicius gentoo org> AuthorDate: Thu Sep 8 22:19:26 2016 +0000 Commit: Ian Stakenvicius gentoo org> CommitDate: Thu Sep 8 22:20:06 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=605002e1 mozconfig-v6.48.eclass: Ensure --host is always set, bug 590498 eclass/mozconfig-v6.48.eclass | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/eclass/mozconfig-v6.48.eclass b/eclass/mozconfig-v6.48.eclass index e2d8934..17b41b9 100644 --- a/eclass/mozconfig-v6.48.eclass +++ b/eclass/mozconfig-v6.48.eclass @@ -329,11 +329,9 @@ mozconfig_config() { # Instead of the standard --build= and --host=, mozilla uses --host instead # of --build, and --target intstead of --host. # Note, mozilla also has --build but it does not do what you think it does. + # Set both --target and --host as mozilla uses python to guess values otherwise mozconfig_annotate '' --target="${CHOST}" - if [[ "${CBUILD:-${CHOST}}" != "${CHOST}" ]]; then - # set --host only when cross-compiling - mozconfig_annotate '' --host="${CBUILD:-${CHOST}}" - fi + mozconfig_annotate '' --host="${CBUILD:-${CHOST}}" mozconfig_use_enable pulseaudio