From d1b402a23c6a736d71b44a4ac36266fa605be652 Mon Sep 17 00:00:00 2001 From: Gene Pavlovsky Date: Sun, 24 Apr 2016 21:24:10 +0300 Subject: [PATCH] Fix missing reference to UNAME_M The `Build on $(UNAME_M) is not supported, yet` message was referencing an undefined UNAME_M. Fixed that. --- src/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index cd282892..5d5779bf 100644 --- a/src/Makefile +++ b/src/Makefile @@ -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