From 7343f0c7ff3d1a78b69537d7ea5b8714e9f54198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikkel=20Hjortsh=C3=B8j?= Date: Wed, 6 Feb 2019 18:56:02 +0100 Subject: [PATCH] Fix recursive variable in makefile on macOS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 04edfc682..7129c41e1 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ CC=clang OS=$(shell uname) ifeq ($(OS), Darwin) - LDFLAGS=$(LDFLAGS) -liconv + LDFLAGS:=$(LDFLAGS) -liconv endif all: debug demo