diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2022-05-20 12:33:39 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2022-05-20 12:33:39 +0200 |
commit | e691d9a63cec54bcbf1c5f546470e1f256a40db7 (patch) | |
tree | d449a3eaa1cfe989fd2fe212ab0f8f133b485b32 /lib | |
parent | dfd07b0a23396720e9bfe4515a596932694737ee (diff) |
Kconfig: support relative paths
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kconfig.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/kconfig.py b/lib/kconfig.py index fe077a5..c8434f2 100644 --- a/lib/kconfig.py +++ b/lib/kconfig.py @@ -80,7 +80,7 @@ class ExploreConfig(AttributeExperiment): class KConfig: def __init__(self, working_directory): - self.cwd = working_directory + self.cwd = os.path.abspath(working_directory) self.clean_command = "make clean" self.build_command = "make" self.attribute_command = "make attributes" |