Fix path to static libuv library

This commit is contained in:
Pieter Noordhuis 2013-07-10 21:47:44 -07:00
parent 0396159214
commit efe990d07d

View File

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