1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-09 14:01:18 +03:00

Merge pull request #10532 from gilles-peskine-arm/race-condition-in-makefile-4.0

Fix race condition in makefile affecting test_sha3_variations
This commit is contained in:
Valerio Setti
2025-12-04 21:42:15 +00:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ SSL_OPT_APPS += test/query_compile_time_config test/udp_proxy
ssl-opt: $(patsubst %,%$(EXEXT),$(SSL_OPT_APPS))
.PHONY: ssl-opt
fuzz: ${MBEDTLS_TEST_OBJS}
fuzz: ${MBEDLIBS} ${MBEDTLS_TEST_OBJS}
$(MAKE) -C fuzz
${MBEDTLS_TEST_OBJS}:

View File

@@ -140,7 +140,7 @@ endif
default: all
$(MBEDLIBS):
$(MAKE) -C $(MBEDTLS_PATH)/library
$(MAKE) -C $(MBEDTLS_PATH)/library $(@F)
neat: clean
ifndef WINDOWS