From 47b9648f85a032edd7fda1aa8a895bcdc134d429 Mon Sep 17 00:00:00 2001 From: Ansa89 Date: Tue, 24 Jun 2014 00:23:37 +0200 Subject: [PATCH] Makefile: fix typo --- src/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Makefile b/src/Makefile index 3ae784e..8e6a85d 100644 --- a/src/Makefile +++ b/src/Makefile @@ -43,16 +43,16 @@ else CFLAGS += LDFLAGS += endif - UNAME_P = $(shell uname -p) - ifeq ($(UNAME_P), x86_64) + UNAME_M = $(shell uname -m) + ifeq ($(UNAME_M), x86_64) CFLAGS += LDFLAGS += endif - ifneq ($(filter %86, $(UNAME_P)),) + ifneq ($(filter %86, $(UNAME_M)),) CFLAGS += LDFLAGS += endif - ifneq ($(filter arm%, $(UNAME_P)),) + ifneq ($(filter arm%, $(UNAME_M)),) CFLAGS += LDFLAGS += endif