|
@@ -9,9 +9,9 @@ cwd = GetCurrentDir()
|
|
group = []
|
|
group = []
|
|
|
|
|
|
# add common code files
|
|
# add common code files
|
|
-group = group + SConscript(os.path.join(cwd, 'common', 'SConscript'))
|
|
|
|
|
|
+group = group + SConscript(os.path.join('common', 'SConscript'))
|
|
|
|
|
|
# cpu porting code files
|
|
# cpu porting code files
|
|
-group = group + SConscript(os.path.join(cwd, rtconfig.CPU, 'SConscript'))
|
|
|
|
|
|
+group = group + SConscript(os.path.join(rtconfig.CPU, 'SConscript'))
|
|
|
|
|
|
Return('group')
|
|
Return('group')
|