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:
jag%tty.nl
2008-02-13 08:13:33 +00:00
parent c9315d165a
commit 0a4ed0f772

View File

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