From 45ee11a90a3ed41d8af96799a9f088c150909857 Mon Sep 17 00:00:00 2001 From: powturbo Date: Tue, 22 Oct 2019 23:02:13 +0200 Subject: [PATCH] . --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index bb29123..07da124 100644 --- a/makefile +++ b/makefile @@ -33,14 +33,14 @@ CXX=g++ CFLAGS+=-D__int64_t=int64_t else OS := $(shell uname -s) - UNAMEA := shell uname -a + UNAMEA := $(shell uname -a) ifeq (,$(filter $(UNAMEA),aarch64)) OS := arm64 endif ifeq (,$(filter $(UNAMEA),ppc64le)) OS := ppc64le endif -ifeq (,$(findstring ppc64le, $(CC))) +ifneq (,$(findstring ppc64le, $(CC))) OS := ppc64le endif endif