Merge pull request #170 from CodyCodeman/fix-make-syntax-error-darwin
Darwin: Fix Makefile syntax error
This commit is contained in:
commit
c35135cabf
2
Makefile
2
Makefile
|
|
@ -63,7 +63,7 @@ ifeq ($(UNAME), Darwin)
|
||||||
LIBS_USB += -lusb-1.0
|
LIBS_USB += -lusb-1.0
|
||||||
LIBS_CURSES := -lncurses
|
LIBS_CURSES := -lncurses
|
||||||
# cpufeatures reportedly does not work (yet) on darwin arm64
|
# cpufeatures reportedly does not work (yet) on darwin arm64
|
||||||
ifneq $($(ARCH),arm64)
|
ifneq ($(ARCH),arm64)
|
||||||
CPUFEATURES ?= yes
|
CPUFEATURES ?= yes
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue