1
0
mirror of https://github.com/open-simh/simh.git synced 2026-01-13 23:37:13 +00:00

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