From 84ac1d5a87859bd96bd767b5a65b017e260024a1 Mon Sep 17 00:00:00 2001 From: Peter Andreas Entschev Date: Tue, 21 Mar 2023 12:52:54 +0100 Subject: [PATCH] Fix conda recipe post-link.sh typo (#12916) Following an internal discussion, fix a typo in conda recipe `post-link.sh`. For some conda versions relying solely on `prelink_message` is insufficient, thus this file has to still be maintained. Authors: - Peter Andreas Entschev (https://github.com/pentschev) - Vyas Ramasubramani (https://github.com/vyasr) Approvers: - Robert Maynard (https://github.com/robertmaynard) - Jordan Jacobelli (https://github.com/jjacobelli) - Bradley Dice (https://github.com/bdice) - Vyas Ramasubramani (https://github.com/vyasr) URL: https://github.com/rapidsai/cudf/pull/12916 --- conda/recipes/libcudf/post-link.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conda/recipes/libcudf/post-link.sh b/conda/recipes/libcudf/post-link.sh index 64e0b1ad305..8ae2349f791 100644 --- a/conda/recipes/libcudf/post-link.sh +++ b/conda/recipes/libcudf/post-link.sh @@ -1,6 +1,6 @@ #!/bin/bash -# Copyright (c) 2022, NVIDIA CORPORATION. +# Copyright (c) 2022-2023, NVIDIA CORPORATION. # Only add the license notice to libcudf and not our examples / tests if [[ "$PKG_NAME" == "libcudf" ]]; then - cat ./nvlink.txt >> $PREFIX/.messages.txt + cat ./nvcomp.txt >> $PREFIX/.messages.txt fi