From eb034d797a99919cd90e528f8d6e494674109be5 Mon Sep 17 00:00:00 2001 From: Heejin Ahn Date: Thu, 19 Dec 2024 05:09:37 +0000 Subject: [PATCH] Remove unnecessary self --- tools/system_libs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/system_libs.py b/tools/system_libs.py index 6ef19ea06c656..ef896f6ec96ac 100644 --- a/tools/system_libs.py +++ b/tools/system_libs.py @@ -529,7 +529,7 @@ def build_objects(self, build_dir): elif batch_inputs: # Use relative paths to reduce the length of the command line. # This allows to avoid switching to a response file as often. - src = os.path.relpath(src, self.build_dir) + src = os.path.relpath(src, build_dir) src = utils.normalize_path(src) batches.setdefault(tuple(cmd), []).append(src) else: