From a058cb072fcd8f2874513e4ca58f92482e2a191b Mon Sep 17 00:00:00 2001 From: Matoro Mahri Date: Sat, 13 Jan 2024 00:14:01 -0500 Subject: 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 Closes: https://github.com/gentoo/netifrc/pull/52 Signed-off-by: Sam James --- 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 -- cgit v1.2.3-65-gdbad