From: Greg Ward Date: Thu, 21 Sep 2000 01:23:35 +0000 (+0000) Subject: Corran Webster: fix 'change_root()' to handle Mac OS paths. X-Git-Tag: v2.0b2~176 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5855746fe0851e5a80b32061cb819021285ff25;p=thirdparty%2FPython%2Fcpython.git Corran Webster: fix 'change_root()' to handle Mac OS paths. --- diff --git a/Lib/distutils/util.py b/Lib/distutils/util.py index 468887127fd4..b60e39c70935 100644 --- a/Lib/distutils/util.py +++ b/Lib/distutils/util.py @@ -100,7 +100,13 @@ def change_root (new_root, pathname): return os.path.join (new_root, path) elif os.name == 'mac': - raise RuntimeError, "no clue how to do this on Mac OS" + if not os.path.isabs(pathname): + return os.path.join(new_root, pathname) + else: + # Chop off volume name from start of path + elements = string.split(pathname, ":", 1) + pathname = ":" + elements[1] + return os.path.join(new_root, pathname) else: raise DistutilsPlatformError, \