From 095fda75d2324fa92ed63da02daff994a9bb860e Mon Sep 17 00:00:00 2001 From: Bogomil Vasilev Date: Wed, 17 May 2017 19:09:10 +0300 Subject: [PATCH] Took me a while to fix this SHIT ... --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 35ce074..0262d0a 100644 --- a/Makefile +++ b/Makefile @@ -6,11 +6,11 @@ CCFLAGS += -Wall \ -Wmissing-declarations \ -pedantic \ -fstack-protector-strong -CCFLAGS += `mysql_config --cflags` +CCFLAGS += $(shell mysql_config --cflags) LDFLAGS = -O1 -lcrypto -lssl -lpthread LDFLAGS += -Wl,-z,relro,-z,now -LDFLAGS += `mysql_config --libs` +LDFLAGS += $(shell mysql_config --libs) SOURCES = main.c \ confparser.c \