Skip to content

Commit af1e482

Browse files
Correct Bug
1 parent b9217d6 commit af1e482

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ def __init__(self, target, notify=None, macros=None, build_profile=None,
433433
self.build_all = False
434434

435435
# Build output dir
436-
self.build_dir = path.abspath(build_dir) if PRINT_COMPILER_OUTPUT_AS_LINK else build_dir
436+
self.build_dir = abspath(build_dir) if PRINT_COMPILER_OUTPUT_AS_LINK else build_dir
437437
self.timestamp = time()
438438

439439
# Number of concurrent build jobs. 0 means auto (based on host system cores)

0 commit comments

Comments
 (0)