aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGilles Peskine <Gilles.Peskine@arm.com>2019-07-27 23:52:53 +0200
committerDarryl Green <darryl.green@arm.com>2019-11-13 14:33:33 +0000
commit3bdd412d096d779a4c4072b3a1df0a5571036d74 (patch)
treecd12367a25fddb8a0bfea125677ec91376f58f26 /Makefile
parent4efaeba48bd9bd65ead3a7f801e4587fa0e241f3 (diff)
downloadmbedtls-3bdd412d096d779a4c4072b3a1df0a5571036d74.zip
mbedtls-3bdd412d096d779a4c4072b3a1df0a5571036d74.tar.gz
mbedtls-3bdd412d096d779a4c4072b3a1df0a5571036d74.tar.bz2
Invoke config.py instead of config.pl
git grep -Fl /config.pl | xargs sed -i -e 's!/config\.pl!/config.py!g' Also: * Change one comment in include/mbedtls/check_config.h. * Change PERL to PYTHON in CMakeLists.txt.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index c9eb681..4fd7f8e 100644
--- a/Makefile
+++ b/Makefile
@@ -70,11 +70,11 @@ post_build:
ifndef WINDOWS
# If 128-bit keys are configured for CTR_DRBG, display an appropriate warning
- -scripts/config.pl get MBEDTLS_CTR_DRBG_USE_128_BIT_KEY && ([ $$? -eq 0 ]) && \
+ -scripts/config.py get MBEDTLS_CTR_DRBG_USE_128_BIT_KEY && ([ $$? -eq 0 ]) && \
echo '$(CTR_DRBG_128_BIT_KEY_WARNING)'
# If NULL Entropy is configured, display an appropriate warning
- -scripts/config.pl get MBEDTLS_TEST_NULL_ENTROPY && ([ $$? -eq 0 ]) && \
+ -scripts/config.py get MBEDTLS_TEST_NULL_ENTROPY && ([ $$? -eq 0 ]) && \
echo '$(NULL_ENTROPY_WARNING)'
endif