MAKEFILE: Make sure that the runtime library search path is also used at link time.

This commit is contained in:
Mark Pizzolato 2016-02-08 13:27:09 -08:00
parent ba9769c258
commit 02aa4539cd

View file

@ -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