From 14a1bb62b6cbcc58183eac60a511a5a6a7a06c73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ciro=20Santilli=20=E5=85=AD=E5=9B=9B=E4=BA=8B=E4=BB=B6=20?= =?UTF-8?q?=E6=B3=95=E8=BD=AE=E5=8A=9F?= Date: Fri, 18 Oct 2019 00:00:00 +0000 Subject: [PATCH] common: remove common_c refactoring artifact --- common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 3d28e03..8c0aee3 100644 --- a/common.py +++ b/common.py @@ -950,11 +950,11 @@ Incompatible archs are skipped. # Userland / baremetal common source. env['common_basename_noext'] = env['repo_short_id'] - env['common_c'] = common_c = os.path.join( + env['common_c'] = os.path.join( env['root_dir'], env['common_basename_noext'] + env['c_ext'] ) - env['common_h'] = common_c = os.path.join( + env['common_h'] = os.path.join( env['root_dir'], env['common_basename_noext'] + env['header_ext'] )