Merge pull request #170 from CodyCodeman/fix-make-syntax-error-darwin

Darwin: Fix Makefile syntax error
This commit is contained in:
Oliver Jowett 2022-01-15 12:58:44 +08:00 committed by GitHub
commit c35135cabf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ ifeq ($(UNAME), Darwin)
LIBS_USB += -lusb-1.0
LIBS_CURSES := -lncurses
# cpufeatures reportedly does not work (yet) on darwin arm64
ifneq $($(ARCH),arm64)
ifneq ($(ARCH),arm64)
CPUFEATURES ?= yes
endif
endif