Skip to content
Snippets Groups Projects
Commit d1b402a2 authored by Gene Pavlovsky's avatar Gene Pavlovsky
Browse files

Fix missing reference to UNAME_M

The `Build on $(UNAME_M) is not supported, yet` message was referencing an undefined UNAME_M. Fixed that.
parent 35a9aff8
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