mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2025-01-11 10:38:12 +00:00
Fix missing reference to UNAME_M
The `Build on $(UNAME_M) is not supported, yet` message was referencing an undefined UNAME_M. Fixed that.
This commit is contained in:
parent
35a9aff8e1
commit
d1b402a23c
@ -7,7 +7,8 @@ else ifeq ($(UNAME_S),Linux)
|
||||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(shell uname -m),x86_64)
|
||||
UNAME_M := $(shell uname -m)
|
||||
ifneq ($(UNAME_M),x86_64)
|
||||
$(error "Build on $(UNAME_M) is not supported, yet.")
|
||||
endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user