From 02aa4539cd1207914f8666768dd619729867593d Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Mon, 8 Feb 2016 13:27:09 -0800 Subject: [PATCH] MAKEFILE: Make sure that the runtime library search path is also used at link time. --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 5a457d82..ee16af2e 100644 --- a/makefile +++ b/makefile @@ -266,9 +266,9 @@ ifeq ($(WIN32),) #*nix Environments (&& cygwin) $(info *** Warning ***) else LIBPATH = $(subst :, ,$(LPATH)) - OS_LDFLAGS += $(patsubst %,-L%,$(LIBPATH)) endif endif + OS_LDFLAGS += $(patsubst %,-L%,$(LIBPATH)) endif endif endif