Skip to content

Commit

Permalink
Fix PSA macro identification regexp
Browse files Browse the repository at this point in the history
Signed-off-by: Gabor Mezei <[email protected]>
  • Loading branch information
gabor-mezei-arm committed Dec 5, 2024
1 parent 2e3f17a commit 5034a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ def __init__(self, *configs):
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"""

Expand Down

0 comments on commit 5034a1f

Please sign in to comment.