From 6657a01d273e4b5ca322c6d130fd44cedd3cc97a Mon Sep 17 00:00:00 2001 From: "Sijmen J. Mulder" Date: Sat, 20 Nov 2021 01:44:32 +0100 Subject: [PATCH] Respect LDFLAGS in test/cpp/Makefile E.g. so libraries are found when using a third-party package manager. --- test/cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/Makefile b/test/cpp/Makefile index 2312bade..681e4a42 100644 --- a/test/cpp/Makefile +++ b/test/cpp/Makefile @@ -42,4 +42,4 @@ clean : # Executable targets. %: %.cpp $(LIBXLSXWRITER) - $(Q)$(CXX) -I$(INC_DIR) $(CXXFLAGS) $< -o $@ $(LIBS) + $(Q)$(CXX) -I$(INC_DIR) $(CXXFLAGS) $(LDFLAGS) $< -o $@ $(LIBS)