From 35f3f70436514de3b6fc90372681438567d3bfb6 Mon Sep 17 00:00:00 2001 From: chenrui17 <33319780+chenrui17@users.noreply.github.com> Date: Thu, 11 Mar 2021 06:01:42 +0800 Subject: [PATCH] Fix no such file dlpack.h error when build libcudf (#7549) close #7548 Authors: - @chenrui17 Approvers: - Keith Kraus (@kkraus14) URL: https://github.com/rapidsai/cudf/pull/7549 --- cpp/cmake/thirdparty/CUDF_GetDLPack.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/cmake/thirdparty/CUDF_GetDLPack.cmake b/cpp/cmake/thirdparty/CUDF_GetDLPack.cmake index 5aaf5eaa434..b41c6d3b8d2 100644 --- a/cpp/cmake/thirdparty/CUDF_GetDLPack.cmake +++ b/cpp/cmake/thirdparty/CUDF_GetDLPack.cmake @@ -16,7 +16,7 @@ function(find_and_configure_dlpack VERSION) if(DLPACK_INCLUDE) - set(DLPACK_INCLUDE_DIR "${DLPACK_INCLUDE_DIR}" PARENT_SCOPE) + set(DLPACK_INCLUDE_DIR "${DLPACK_INCLUDE}" PARENT_SCOPE) return() endif() find_path(DLPACK_INCLUDE_DIR "dlpack"