From 60592448563cbb535dbd4616d8a9ba1cef38341c Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Tue, 26 Nov 2013 11:49:55 +0900 Subject: [PATCH] Bug 942377 - Fix check_mkdir.tpy with mozmake. r=mshal --- config/tests/makefiles/autodeps/check_mkdir.tpy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/tests/makefiles/autodeps/check_mkdir.tpy b/config/tests/makefiles/autodeps/check_mkdir.tpy index 2b3f0d751e4..ad633c781d0 100644 --- a/config/tests/makefiles/autodeps/check_mkdir.tpy +++ b/config/tests/makefiles/autodeps/check_mkdir.tpy @@ -98,8 +98,8 @@ def checkMkdir(work, debug=False): logging.debug("Testing: checkMkdir") - # On Windows + Pymake, don't convert paths to POSIX - skipposix = sys.platform == "win32" and os.environ.get(".PYMAKE") == "1" + # On Windows, don't convert paths to POSIX + skipposix = sys.platform == "win32" if skipposix: path = os.path.abspath(__file__) dirname_fun = os.path.dirname