From a43fa6f43f54989468a294967898f85b9fe4cefa Mon Sep 17 00:00:00 2001 From: Rone Charles Date: Tue, 16 Jan 2024 19:01:39 -0500 Subject: [PATCH] Remove whitespace character preventing the removal -lrt from LDLIBS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8bd95d3a..6a27c82c 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ ifneq (,$(findstring mingw,$(shell $(CXX) --version))) endif ifeq (1, $(MINGW)) - LDLIBS := $(subst -lrt ,,$(LDLIBS)) + LDLIBS := $(subst -lrt,,$(LDLIBS)) CXX = x86_64-w64-mingw32-g++-posix CC = x86_64-w64-mingw32-gcc-posix AR = x86_64-w64-mingw32-ar