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 90EE8138334 for ; Thu, 13 Jun 2019 11:08:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 231AEE0943; Thu, 13 Jun 2019 11:08:43 +0000 (UTC) Received: from atfriesa01.ssi-schaefer.com (atfriesa01.ssi-schaefer.com [193.186.16.100]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 86C3EE07D9 for ; Thu, 13 Jun 2019 11:08:41 +0000 (UTC) X-IronPort-AV: E=Sophos;i="5.62,369,1554760800"; d="scan'208";a="35944023" X-IPAS-Result: =?us-ascii?q?A2FrBwAPLgJd/+shHKxmHQEBBQEHBQGBZZwCAQEGiwaJc4c?= =?us-ascii?q?hAQEBAQEBAQEBCBMcAQGHLzgTAQMBAQEEAQEBAQMBAgKBEYYEAUaEc4F3q2SFR?= =?us-ascii?q?4RpgTSHBoRueIEHhGGEDYEEhRUEqUwJghKCG5ElDBuNCYoiAS2jaIFmgXp9CIM?= =?us-ascii?q?ogWMBjm+PCYJSAQE?= Received: from samail03.wamas.com (HELO mailhost.salomon.at) ([172.28.33.235]) by atfriesa01.ssi-schaefer.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Jun 2019 13:08:41 +0200 Received: from [172.28.42.244] (helo=wamas.com) by mailhost.salomon.at with smtp (Exim 4.77) (envelope-from ) id 1hbNax-0003pX-V1; Thu, 13 Jun 2019 13:08:39 +0200 Received: with nullmailer 2.2; Thu, 13 Jun 2019 11:08:39 -0000 From: Michael Haubenwallner To: gentoo-dev@lists.gentoo.org Cc: x11@gentoo.org, Michael Haubenwallner Subject: [gentoo-dev] [PATCH] xorg-3.eclass: EAUTORECONF_DEPENDS belong to BDEPEND Date: Thu, 13 Jun 2019 13:08:15 +0200 Message-Id: <20190613110815.4729-1-haubi@gentoo.org> X-Mailer: git-send-email 2.19.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: d060a183-bdb6-4aea-8e44-f52e57d8ff71 X-Archives-Hash: 75c4c5d736327636786ae4694be2828c EAUTORECONF_DEPENDS is non-empty for ppc-aix and x86-winnt only. Also, unset variable 'arch' after use. --- eclass/xorg-3.eclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/xorg-3.eclass b/eclass/xorg-3.eclass index 6ac90a64d59..f135058fba6 100644 --- a/eclass/xorg-3.eclass +++ b/eclass/xorg-3.eclass @@ -116,7 +116,8 @@ WANT_AUTOMAKE="latest" for arch in ${XORG_EAUTORECONF_ARCHES}; do EAUTORECONF_DEPENDS+=" ${arch}? ( ${EAUTORECONF_DEPEND} )" done -DEPEND+=" ${EAUTORECONF_DEPENDS}" +unset arch +BDEPEND+=" ${EAUTORECONF_DEPENDS}" [[ ${XORG_EAUTORECONF} != no ]] && BDEPEND+=" ${EAUTORECONF_DEPEND}" unset EAUTORECONF_DEPENDS unset EAUTORECONF_DEPEND -- 2.19.2