From f047172bd31035f39c535a2b0e1758689e74002d Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Mon, 13 Nov 2023 05:53:10 -0800 Subject: [PATCH] Fix uname assignment in Makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 35fb4b19f..922a3c162 100644 --- a/Makefile +++ b/Makefile @@ -81,8 +81,8 @@ $(warning wsl2 interop is enabled) $(error you need to run sudo sh -c 'echo -1 > /proc/sys/fs/binfmt_misc/WSLInterop') endif -UNAME_M = $(shell uname -m) -UNAME_S = $(shell uname -s) +UNAME_M := $(shell uname -m) +UNAME_S := $(shell uname -s) # apple still distributes a 17 year old version of gnu make ifeq ($(MAKE_VERSION), 3.81)