File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9898ifdef TBB_LIB
9999 echo "Using system (Intel/OneAPI) TBB library..."; \
100100 mkdir -p ../inst/lib/$(ARCH_DIR); \
101- cp $(TBB_LIB)/libtbb.so ../inst/lib/$(ARCH_DIR)/libtbb.so; \
102- cp $(TBB_LIB)/libtbbmalloc.so ../inst/lib/$(ARCH_DIR)/libtbbmalloc.so; \
101+ cp $(TBB_LIB)/libtbb.so ../inst/lib/$(ARCH_DIR)/libtbb.so 2>/dev/null || : ; \
102+ cp $(TBB_LIB)/libtbbmalloc.so ../inst/lib/$(ARCH_DIR)/libtbbmalloc.so 2>/dev/null || : ; \
103103 rm -Rf ../inst/include/serial/ ../inst/include/tbb/; \
104104 rm -Rf ../inst/include/tbb_local/; \
105105 mkdir -p ../inst/include; \
106- cp -R $(TBB_INC)/serial ../inst/include/; \
107- cp -R $(TBB_INC)/tbb ../inst/include/
106+ cp -R $(TBB_INC)/serial ../inst/include/ 2>/dev/null || : ; \
107+ cp -R $(TBB_INC)/tbb ../inst/include/ 2>/dev/null || :
108108else
109109 echo "Building TBB library from source code..."; \
110110 mkdir -p ../inst/lib/$(ARCH_DIR); \
You can’t perform that action at this time.
0 commit comments