Fix uname assignment in Makefile

This commit is contained in:
Justine Tunney 2023-11-13 05:53:10 -08:00
parent 5d5b282d12
commit f047172bd3
No known key found for this signature in database
GPG key ID: BE714B4575D6E328

View file

@ -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)