summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2018-05-16 09:08:00 -0700
committermichael-grunder <michael.grunder@gmail.com>2018-05-16 09:08:00 -0700
commit9d3b4ec703ee3d2d03920bc2dbb939d9598ca25d (patch)
treedca5954667c75576fda07e176089a0e3b8cd23dd /Makefile
parent03938d7ad28c4e72d756867d7aaa2367270b2b88 (diff)
Make sure we've got a path separator before the actual dylib name
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 54c93d2..729bb70 100644
--- a/Makefile
+++ b/Makefile
@@ -63,7 +63,7 @@ endif
ifeq ($(uname_S),Darwin)
DYLIBSUFFIX=dylib
DYLIB_MINOR_NAME=$(LIBNAME).$(HIREDIS_SONAME).$(DYLIBSUFFIX)
- DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(PREFIX)/$(LIBRARY_PATH)$(DYLIB_MINOR_NAME) -o $(DYLIBNAME) $(LDFLAGS)
+ DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(PREFIX)/$(LIBRARY_PATH)/$(DYLIB_MINOR_NAME) -o $(DYLIBNAME) $(LDFLAGS)
endif
all: $(DYLIBNAME) $(STLIBNAME) hiredis-test $(PKGCONFNAME)