Commit efe990d0 authored by Pieter Noordhuis's avatar Pieter Noordhuis
Browse files

Fix path to static libuv library

parent 03961592
......@@ -82,7 +82,7 @@ hiredis-example-libuv:
@false
else
hiredis-example-libuv: example-libuv.c adapters/libuv.h $(STLIBNAME)
$(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I${LIBUV_DIR}/include/ example-libuv.c ${LIBUV_DIR}/libuv.a -lrt $(STLIBNAME)
$(CC) -o $@ $(REAL_CFLAGS) $(REAL_LDFLAGS) -I$(LIBUV_DIR)/include example-libuv.c $(LIBUV_DIR)/.libs/libuv.a -lpthread $(STLIBNAME)
endif
hiredis-%: %.o $(STLIBNAME)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment