Skip to content

Commit bdae0ef

Browse files
CYFS3Rbb666
authored andcommitted
[bsp] reduce SConscript absolute path usage
1 parent 3e9caca commit bdae0ef

16 files changed

Lines changed: 19 additions & 19 deletions

File tree

bsp/hpmicro/hpm5300evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm5301evklite/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm5e00evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6200evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6300evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6750evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6750evk2/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6750evkmini/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6800evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

bsp/hpmicro/hpm6e00evk/startup/SConscript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ from building import *
77
cwd = GetCurrentDir()
88
objs = []
99

10-
objs = objs + SConscript(os.path.join(cwd, rtconfig.CHIP_NAME, 'SConscript'))
10+
objs = objs + SConscript(os.path.join(rtconfig.CHIP_NAME, 'SConscript'))
1111
ASFLAGS = ' -I' + cwd
1212

1313
Return('objs')

0 commit comments

Comments
 (0)