From 5034a1f597c98f01c2ad31cf2d43a7a37637a721 Mon Sep 17 00:00:00 2001 From: Gabor Mezei Date: Thu, 5 Dec 2024 19:06:19 +0100 Subject: [PATCH] Fix PSA macro identification regexp Signed-off-by: Gabor Mezei --- scripts/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/config.py b/scripts/config.py index 9e546f7671..1027f2c99c 100755 --- a/scripts/config.py +++ b/scripts/config.py @@ -397,7 +397,7 @@ class CombinedConfig(config_common.Config): for configfile in [self.mbedtls_configfile, self.crypto_configfile] for (active, name, value, section) in configfile.parse_file()}) - _crypto_regexp = re.compile(r'$PSA_.*') + _crypto_regexp = re.compile(r'^PSA_.*') def _get_configfile(self, name=None): """Find a config type for a setting name"""