From cacb1c0254fa8d0aacb4373d09db155999314d75 Mon Sep 17 00:00:00 2001 From: Wolfgang Hottgenroth Date: Thu, 28 Sep 2023 18:45:22 +0200 Subject: [PATCH] fix makefile concerning libconfig --- sink/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sink/Makefile b/sink/Makefile index e2365a5..bc182de 100644 --- a/sink/Makefile +++ b/sink/Makefile @@ -9,10 +9,10 @@ VERSION ?= $(shell git rev-parse --short=8 HEAD) UNAME_S := $(shell uname -s) CC = gcc -CFLAGS = $(shell pkg-config --cflags libpq libconfig) -I. \ +CFLAGS = $(shell pkg-config --cflags libpq) -I. \ -Wall -Werror -std=c99 \ -D$(UNAME_S)=1 -DVERSION="\"$(VERSION)\"" -LDFLAGS = $(shell pkg-config --libs libpq libconfig) +LDFLAGS = $(shell pkg-config --libs libpq) TARGET = sink20169 all: $(BUILD_DIR)/$(TARGET)