From b686d707b21f094c2b62f4ead93594a92f52e07e Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Wed, 31 Jan 2018 05:58:26 +0000 Subject: [PATCH] build: fix arch detection --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d1ce15..1bb8ba2 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -ARCH := $(uname -m) +ARCH := $(shell uname -m) CFLAGS = -ggdb3 -O2 -Wall