From 07f488da706ad1a2ba6d95207f4bde412ee39e32 Mon Sep 17 00:00:00 2001 From: Nicolas Favre-Felix Date: Sun, 23 Feb 2020 03:37:14 -0800 Subject: [PATCH] Fix Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c625816..be6f18f 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ LDFLAGS ?= -levent -pthread # check for MessagePack MSGPACK_LIB=$(shell ls /usr/lib/libmsgpack.so 2>/dev/null) ifneq ($(strip $(MSGPACK_LIB)),) - FORMAT_OBJS += formats/msgpack.o + FORMAT_OBJS += src/formats/msgpack.o CFLAGS += -DMSGPACK=1 LDFLAGS += -lmsgpack endif