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

Merge pull request #10531 from gilles-peskine-arm/race-condition-in-makefile-3.6

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

View File

@@ -125,7 +125,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

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