From e427c5471b902c18b073d24ca012d3945b11176a Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 10 Jan 2015 12:06:16 +0100 Subject: [PATCH] Fixed include paths for 3rdparty libs (nw) --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 08af0145962..e4ed80c3748 100644 --- a/makefile +++ b/makefile @@ -752,7 +752,7 @@ LIBS = # add expat XML library ifeq ($(BUILD_EXPAT),1) -INCPATH += -I$(SRC)/lib/expat +INCPATH += -I$(3RDPARTY)/expat/lib EXPAT = $(OBJ)/libexpat.a else LIBS += -lexpat @@ -761,7 +761,7 @@ endif # add ZLIB compression library ifeq ($(BUILD_ZLIB),1) -INCPATH += -I$(SRC)/lib/zlib +INCPATH += -I$(3RDPARTY)/zlib ZLIB = $(OBJ)/libz.a else LIBS += -lz