commit 8a03e6c0f55ea202b01ac7934a2b47c4b2c234b2
parent b08fc25d95efd7a69b9954cf27c38ea360ff4101
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Tue, 30 Jul 2024 15:47:01 +0200
Fix tbb template Makefile
Use the $(MAKE) macro instead of invoking the make command directly,
since it is possible to invoke compilation by invoking not the generic
make command but its specific implementation, such as gmake or bmake.
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/tbb.mk.in b/src/tbb.mk.in
@@ -35,7 +35,7 @@ tbb: build_tbb prefix
prefix="$$(cat .prefix)" && \
cd -- $(TBB_DIR)/build && \
cmake -DCMAKE_INSTALL_PREFIX="$${prefix}" .. && \
- make install
+ $(MAKE) install
build_tbb: $(TBB_DIR)
@cd -- $(TBB_DIR)/build && \