Browse Source

msdev: fix

pull/2/head
mittorn 6 years ago committed by Alibek Omarov
parent
commit
f6b3603934
  1. 4
      scripts/waflib/msdev.py

4
scripts/waflib/msdev.py

@ -598,9 +598,9 @@ class MsDevProject(MsDev): @@ -598,9 +598,9 @@ class MsDevProject(MsDev):
Logs.pprint('YELLOW', 'root: ' + bld.root.abspath())
root = bld.root.abspath().replace('\\', '/')
pref = os.path.commonprefix([root, uselib_inc])
Logs.pprint('YELLOW', 'pref: ' + pref.abspath())
Logs.pprint('YELLOW', 'pref: '+ pref)
if pref == root:
node = bld.top_dir.find_dir(uselib_inc)
node = bld.root.find_dir(uselib_inc)
if node:
includes.append(node.path_from(gen.path).replace('/', '\\'))
includes.append(uselib_inc)

Loading…
Cancel
Save