Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/NVIDIA/thrust.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWesley Maxey <71408887+wmaxey@users.noreply.github.com>2022-11-05 00:50:24 +0300
committerGitHub <noreply@github.com>2022-11-05 00:50:24 +0300
commit81dcceaf7ddf054c5ef111379a8c16cd433d9b18 (patch)
tree4c155fa52810d93234a46eacd57f33b202db39b8 /Makefile
parentdbd144ed543b60c4ff9d456edd19869e82fe8873 (diff)
Use system bzip rather than lbzip. (#1818)
lbzip requires 32-bit glibc which is a pain on several test configs.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bf421cc2..4b5a4a42 100644
--- a/Makefile
+++ b/Makefile
@@ -120,7 +120,7 @@ ifeq ($(OS), win32)
else
TAR_FILES = bin thrust/internal/test thrust/internal/scripts thrust/internal/benchmark $(DVS_COMMON_TEST_PACKAGE_FILES)
TAR_FILES += `find -L thrust \( -name "*.cuh" -o -name "*.h" -o -name "*.inl" \)`
- MAKE_DVS_PACKAGE = tar -I lbzip2 -chvf built/CUDA-thrust-package.tar.bz2 $(TAR_FILES)
+ MAKE_DVS_PACKAGE = tar -I bzip2 -chvf built/CUDA-thrust-package.tar.bz2 $(TAR_FILES)
endif
COPY_CUB_FOR_PACKAGING = rm -rf cub && cp -rp ../cub/cub cub