Bug 416843: gqi.py generates dependency information that MSYS doesn't understand. r=bsmedberg, a=stuart
git-svn-id: svn://10.0.0.236/trunk@245552 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
"""Implement QueryInterface using optimized generated code."""
|
||||
|
||||
import os, errno, re, sys, sets
|
||||
import os, posixpath, errno, re, sys, sets
|
||||
|
||||
# Global controlling debug output to sys.stderr
|
||||
debug = False
|
||||
@@ -18,7 +18,7 @@ def findfile(f, curfile, includedirs):
|
||||
sdirs.extend(includedirs)
|
||||
|
||||
for dir in sdirs:
|
||||
t = os.path.join(dir, f)
|
||||
t = posixpath.join(dir, f)
|
||||
if os.path.exists(t):
|
||||
return t
|
||||
|
||||
|
||||
Reference in New Issue
Block a user