From 0a4ed0f772401f5702abb984ca28ff89ecd627a2 Mon Sep 17 00:00:00 2001 From: "jag%tty.nl" Date: Wed, 13 Feb 2008 08:13:33 +0000 Subject: [PATCH] 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 --- mozilla/xpcom/base/gqi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mozilla/xpcom/base/gqi.py b/mozilla/xpcom/base/gqi.py index eb8a1a41e14..b2911d0123e 100644 --- a/mozilla/xpcom/base/gqi.py +++ b/mozilla/xpcom/base/gqi.py @@ -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