From e3b508536d825ffd795b1b25abebc3ae8b800078 Mon Sep 17 00:00:00 2001 From: Aaron Traas Date: Thu, 6 Dec 2018 10:01:34 -0500 Subject: [PATCH] Fix warning on macOS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d196a56..546ba81 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ INC+=$(shell pkg-config --cflags libedit) # LLVM/Clang on macOS seems to need -ledit flag for linking UNAME_S := $(shell uname -s) ifeq ($(UNAME_S),Darwin) - CCFLAGS += -ledit + LIBS += -ledit endif OBJS=main.o init.o actions.o score.o misc.o saveresume.o -- 2.31.1