From 7f745fbe3b20bd5c44361381839727b7b7894859 Mon Sep 17 00:00:00 2001 From: Zhi <5145158+zhiics@users.noreply.github.com> Date: Fri, 5 Oct 2018 10:32:57 -0700 Subject: [PATCH] Fix dmlc-core path in nnvm Makefile (#1829) --- nnvm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nnvm/Makefile b/nnvm/Makefile index 4ebd9ac95..8392aadc3 100644 --- a/nnvm/Makefile +++ b/nnvm/Makefile @@ -18,7 +18,7 @@ CFLAGS += -I$(TVMPATH)/include -I$(TVMPATH)/3rdparty/dlpack/include -I$(TVMPATH) ifdef DMLC_CORE_PATH CFLAGS += -I$(DMLC_CORE_PATH)/include else - CFLAGS += -I$(ROOTDIR)/../dmlc-core/include + CFLAGS += -I$(TVMPATH)/3rdparty/dmlc-core/include endif ifneq ($(ADD_CFLAGS), NONE) -- GitLab