m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-15 23:03:47 -05:00

Merge pull request #554 from gene-pavlovsky/patch-1

Fix missing reference to UNAME_M
This commit is contained in:
Junegunn Choi
2016-04-25 23:04:29 +09:00

View File

@@ -7,7 +7,8 @@ else ifeq ($(UNAME_S),Linux)
endif endif
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.") $(error "Build on $(UNAME_M) is not supported, yet.")
endif endif