Skip to content
Snippets Groups Projects
Commit 633aec38 authored by Junegunn Choi's avatar Junegunn Choi
Browse files

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

Fix missing reference to UNAME_M
parents 35a9aff8 d1b402a2
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment