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:
Gabe Black 2007-09-10 12:48:06 -07:00
parent 22a57562cd
commit 8f724a8b96

View file

@ -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: