mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 03:27:39 +00:00
Fix uname assignment in Makefile
This commit is contained in:
parent
5d5b282d12
commit
f047172bd3
1 changed files with 2 additions and 2 deletions
4
Makefile
4
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)
|
||||
|
|
Loading…
Reference in a new issue