From a4730f30ce46c336de7ed71c509dcb6c9c1f6d3d Mon Sep 17 00:00:00 2001 From: Robert Maynard Date: Tue, 12 Oct 2021 16:14:28 -0400 Subject: [PATCH] libcudf/build.sh set CMAKE_INSTALL_LIBDIR to enforce conda layout (#9418) Corrects issues where things get placed under `lib64` Authors: - Robert Maynard (https://github.com/robertmaynard) --- conda/recipes/libcudf/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conda/recipes/libcudf/build.sh b/conda/recipes/libcudf/build.sh index 5110b4e289b..703f8dc15c7 100644 --- a/conda/recipes/libcudf/build.sh +++ b/conda/recipes/libcudf/build.sh @@ -2,7 +2,7 @@ if [[ -z "$PROJECT_FLASH" || "$PROJECT_FLASH" == "0" ]]; then # This assumes the script is executed from the root of the repo directory - ./build.sh -v libcudf --allgpuarch + ./build.sh -v libcudf --allgpuarch --cmake-args=\"-DCMAKE_INSTALL_LIBDIR=lib\" else - ./build.sh -v libcudf tests --allgpuarch -fi \ No newline at end of file + ./build.sh -v libcudf tests --allgpuarch --cmake-args=\"-DCMAKE_INSTALL_LIBDIR=lib\" +fi