diff options
Diffstat (limited to 'lib/kconfig.py')
-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" |