Skip to content

Commit 120f964

Browse files
committed
use alias to make when compiling tbb
1 parent 56145b2 commit 120f964

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Makevars

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ tbb:
6363
mkdir -p ../inst/lib/$(ARCH_DIR); \
6464
cd tbb/src; \
6565
if [[ "$(CC)" == clang* ]]; then \
66-
make cpp0x=1 compiler=clang $(MAKE_ARGS); \
66+
$(MAKE) cpp0x=1 compiler=clang $(MAKE_ARGS); \
6767
else \
68-
make cpp0x=1 $(MAKE_ARGS); \
68+
$(MAKE) cpp0x=1 $(MAKE_ARGS); \
6969
fi; \
7070
cd ../..; \
7171
cp tbb/build/lib_release/$(TBB_COPY_PATTERN) ../inst/lib/$(ARCH_DIR)

0 commit comments

Comments
 (0)