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 35C54158451 for ; Sun, 14 Jan 2024 04:47:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 73B6AE29F3; Sun, 14 Jan 2024 04:47:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 53477E29F3 for ; Sun, 14 Jan 2024 04:47:30 +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 70DEB3431EA for ; Sun, 14 Jan 2024 04:47:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 078FF11F4 for ; Sun, 14 Jan 2024 04:47: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: <1705207645.a058cb072fcd8f2874513e4ca58f92482e2a191b.sam@OpenRC> Subject: [gentoo-commits] proj/netifrc:master commit in: mk/ X-VCS-Repository: proj/netifrc X-VCS-Files: mk/os.mk X-VCS-Directories: mk/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a058cb072fcd8f2874513e4ca58f92482e2a191b X-VCS-Branch: master Date: Sun, 14 Jan 2024 04:47: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: 04a0f420-b478-4b6e-933b-4bdc6f8307ca X-Archives-Hash: 9c4914d7a91c2a1caea35484df2f280e commit: a058cb072fcd8f2874513e4ca58f92482e2a191b Author: Matoro Mahri matoro tk> AuthorDate: Sat Jan 13 05:14:01 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jan 14 04:47:25 2024 +0000 URL: https://gitweb.gentoo.org/proj/netifrc.git/commit/?id=a058cb07 mk/os.mk: don't use OS env var for overriding If you want to override the OS or OS-detect command you can still use _OS and _OS_SH, but OS is too common of an environment variable to listen for. Closes: https://bugs.gentoo.org/906171 Signed-off-by: Matoro Mahri matoro.tk> Closes: https://github.com/gentoo/netifrc/pull/52 Signed-off-by: Sam James gentoo.org> mk/os.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/os.mk b/mk/os.mk index c306f05..cf089e7 100644 --- a/mk/os.mk +++ b/mk/os.mk @@ -5,7 +5,7 @@ _OS_SH= uname -s _OS:= $(shell ${_OS_SH}) -OS?= ${_OS} +OS= ${_OS} include ${MK}/os-${OS}.mk RC_LIB= /$(LIBNAME)/rc