From 024f8514246f73a48ee795df113168c8d017b1dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Marczewski?= Date: Fri, 13 Nov 2020 15:19:39 +0100 Subject: [PATCH] [Pal/lib] Use the right make invocation for mbedtls 'make -jN' is not respected otherwise. --- Pal/lib/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pal/lib/Makefile b/Pal/lib/Makefile index 9d7faa27..7718b7e5 100644 --- a/Pal/lib/Makefile +++ b/Pal/lib/Makefile @@ -90,7 +90,7 @@ crypto/mbedtls/CMakeLists.txt: crypto/$(MBEDTLS_SRC) crypto/$(MBEDCRYPTO_SRC) cr mv crypto/mbedtls/mbed-crypto-mbedcrypto-3.1.0 crypto/mbedtls/crypto cd crypto/mbedtls && patch -p1 < ../mbedtls-$(MBEDTLS_VERSION).diff || exit 255 mkdir crypto/mbedtls/install - cd crypto/mbedtls && perl ./scripts/config.pl set MBEDTLS_CMAC_C && make CFLAGS="" SHARED=1 DESTDIR=install install . + cd crypto/mbedtls && perl ./scripts/config.pl set MBEDTLS_CMAC_C && $(MAKE) CFLAGS="" SHARED=1 DESTDIR=install install . $(RM) crypto/mbedtls/include/mbedtls/config.h $(RM) crypto/mbedtls/crypto/include/mbedtls/config.h