From e691d9a63cec54bcbf1c5f546470e1f256a40db7 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Fri, 20 May 2022 12:33:39 +0200 Subject: Kconfig: support relative paths --- lib/kconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') 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" -- cgit v1.2.3