File tree Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Expand file tree Collapse file tree 1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -118,15 +118,12 @@ ifeq ($(OS), win32)
118118 APPEND_CUH_DVS_PACKAGE = $(ZIP ) -rg built/CUDA-thrust-package.zip thrust -9 -i *.cuh
119119 MAKE_DVS_PACKAGE = $(CREATE_DVS_PACKAGE ) && $(APPEND_H_DVS_PACKAGE ) && $(APPEND_INL_DVS_PACKAGE ) && $(APPEND_CUH_DVS_PACKAGE )
120120else
121- CREATE_DVS_PACKAGE = tar -cvh -f built/CUDA-thrust-package.tar bin thrust/internal/test thrust/internal/scripts thrust/internal/benchmark $(DVS_COMMON_TEST_PACKAGE_FILES )
122- APPEND_H_DVS_PACKAGE = find -L thrust -name "*.h" | xargs tar rvf built/CUDA-thrust-package.tar
123- APPEND_INL_DVS_PACKAGE = find -L thrust -name "*.inl" | xargs tar rvf built/CUDA-thrust-package.tar
124- APPEND_CUH_DVS_PACKAGE = find -L thrust -name "*.cuh" | xargs tar rvf built/CUDA-thrust-package.tar
125- COMPRESS_DVS_PACKAGE = bzip2 --force built/CUDA-thrust-package.tar
126- MAKE_DVS_PACKAGE = $(CREATE_DVS_PACKAGE ) && $(APPEND_H_DVS_PACKAGE ) && $(APPEND_INL_DVS_PACKAGE ) && $(APPEND_CUH_DVS_PACKAGE ) && $(COMPRESS_DVS_PACKAGE )
121+ TAR_FILES = bin thrust/internal/test thrust/internal/scripts thrust/internal/benchmark $(DVS_COMMON_TEST_PACKAGE_FILES )
122+ TAR_FILES += ` find -L thrust \( -name " *.cuh" -o -name " *.h" -o -name " *.inl" \) `
123+ MAKE_DVS_PACKAGE = tar -I lbzip2 -chvf built/CUDA-thrust-package.tar.bz2 $(TAR_FILES )
127124endif
128125
129- COPY_CUB_FOR_PACKAGING = rm -rf cub && cp -r ../cub/cub cub
126+ COPY_CUB_FOR_PACKAGING = rm -rf cub && cp -rp ../cub/cub cub
130127
131128DVS_OPTIONS :=
132129
You can’t perform that action at this time.
0 commit comments