From f00432c59c828b60bee8dd80c8f154b951218c38 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Fri, 26 Jan 2024 19:46:59 +0100 Subject: [PATCH] BUILD: deviceatlas: fix empty "-I" left on CFLAGS The previous fix was incomplete, there was a leftover CURL_INC on the CFLAGS which breaks Lua. --- addons/deviceatlas/Makefile.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/deviceatlas/Makefile.inc b/addons/deviceatlas/Makefile.inc index 8b29559f22..07d950a142 100644 --- a/addons/deviceatlas/Makefile.inc +++ b/addons/deviceatlas/Makefile.inc @@ -10,7 +10,7 @@ else DEVICEATLAS_INC = $(DEVICEATLAS_SRC) DEVICEATLAS_LIB = $(DEVICEATLAS_SRC) OPTIONS_LDFLAGS += -lpthread -OPTIONS_CFLAGS += -I$(DEVICEATLAS_INC) -I$(CURL_INC) +OPTIONS_CFLAGS += -I$(DEVICEATLAS_INC) ifeq ($(DEVICEATLAS_NOCACHE),) CXXFLAGS := $(OPTIONS_CFLAGS) -std=gnu++11 OPTIONS_OBJS += $(DEVICEATLAS_SRC)/dacache.o