1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Make the file path generation more transparent

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei
2024-12-05 18:41:27 +01:00
parent fc719d6e8c
commit c716aade4f

View File

@@ -147,7 +147,7 @@ class TFPSACryptoConfigFile(config_common.ConfigFile):
os.path.join(os.path.dirname(__file__),
os.pardir,
_path_in_tree),
os.path.join(os.path.dirname(os.path.abspath(os.path.dirname(__file__))),
os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))),
_path_in_tree)]
def __init__(self, filename=None):