[libcpu] Fix the build directory issue

This commit is contained in:
BernardXiong
2019-03-26 13:36:01 +00:00
parent b1a98ebe46
commit bd8f0d0423
16 changed files with 23 additions and 25 deletions

View File

@@ -10,6 +10,6 @@ group = []
list = os.listdir(cwd)
if rtconfig.ARCH in list:
group = group + SConscript(os.path.join(cwd, rtconfig.ARCH, 'SConscript'))
group = group + SConscript(os.path.join(rtconfig.ARCH, 'SConscript'))
Return('group')