180c180
< # Walk the tree and execute all SConscripts in 'src' subdirectories
---
> # Walk the tree and execute all SConscripts in subdirectories
184,186d183
< src_dir = joinpath(base_dir, 'src')
< if not isdir(src_dir):
< continue
188c185
< for root, dirs, files in os.walk(src_dir, topdown=True):
---
> for root, dirs, files in os.walk(base_dir, topdown=True):
194c191
< build_dir = joinpath(env['BUILDDIR'], root[len(src_dir) + 1:])
---
> build_dir = joinpath(env['BUILDDIR'], root[len(base_dir) + 1:])