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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E663F15808B for ; Thu, 10 Mar 2022 22:45:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B4EC2E08FC; Thu, 10 Mar 2022 22:45:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 96171E08FC for ; Thu, 10 Mar 2022 22:45:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1ECFA342F98 for ; Thu, 10 Mar 2022 22:45:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 563CB327 for ; Thu, 10 Mar 2022 22:45:28 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1646952247.ec0b2cbf9259b10a7dc18aeb200f29793d8f4f81.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellmwireless/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild X-VCS-Directories: x11-plugins/gkrellmwireless/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ec0b2cbf9259b10a7dc18aeb200f29793d8f4f81 X-VCS-Branch: master Date: Thu, 10 Mar 2022 22:45:28 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 49015932-d3e9-49de-8f6e-74e1f4c00f3e X-Archives-Hash: 6ba537e9135b9f7be8a9bfd49daae514 commit: ec0b2cbf9259b10a7dc18aeb200f29793d8f4f81 Author: Sam James gentoo org> AuthorDate: Thu Mar 10 22:44:07 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 10 22:44:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec0b2cbf x11-plugins/gkrellmwireless: fix commands in global scope Closes: https://bugs.gentoo.org/788067 Signed-off-by: Sam James gentoo.org> x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild b/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild index d3956e0aa0d0..1edfe3999836 100644 --- a/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild +++ b/x11-plugins/gkrellmwireless/gkrellmwireless-2.0.3-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -20,8 +20,9 @@ DEPEND="${RDEPEND}" S=${WORKDIR}/${PN} PATCHES=( "${FILESDIR}"/${PN}-2.0.3-fix-build-system.patch ) -PLUGIN_SO=( wireless$(get_modname) ) - src_configure() { tc-export CC + + PLUGIN_SO=( wireless$(get_modname) ) + default }