From ae33026799e0f6e05d00557e8f98f5805e3d6f13 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sun, 13 May 2018 13:29:18 +0200 Subject: [PATCH] Use $(OS) in makefile to check for Darwin Signed-off-by: Clifford Wolf --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7c5cab8d3..1caa0038b 100644 --- a/Makefile +++ b/Makefile @@ -67,7 +67,7 @@ SED ?= sed BISON ?= bison STRIP ?= strip -ifeq (Darwin,$(findstring Darwin,$(shell uname))) +ifeq ($(OS), Darwin) PLUGIN_LDFLAGS += -undefined dynamic_lookup # homebrew search paths -- 2.30.2