commit: a058cb072fcd8f2874513e4ca58f92482e2a191b Author: Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk> AuthorDate: Sat Jan 13 05:14:01 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> 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_gentoo <AT> matoro.tk> Closes: https://github.com/gentoo/netifrc/pull/52 Signed-off-by: Sam James <sam <AT> 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
