Normalize the path pathed in through EXTRAS so it won't break with a trailing slash.
--HG-- extra : convert_revision : c14e2c6d97b5bcb491b91eeb4e7dc04d1cc35475
This commit is contained in:
parent
22a57562cd
commit
8f724a8b96
1 changed files with 1 additions and 0 deletions
|
@ -165,6 +165,7 @@ for root, dirs, files in os.walk(srcdir, topdown=True):
|
|||
|
||||
for extra in env['EXTRAS'].split(':'):
|
||||
extra = os.path.expanduser(extra)
|
||||
extra = os.path.normpath(extra)
|
||||
env.Append(CPPPATH=[Dir(extra)])
|
||||
for root, dirs, files in os.walk(extra, topdown=True):
|
||||
if 'SConscript' in files:
|
||||
|
|
Loading…
Reference in a new issue