Kaydet (Commit) 34520cdc authored tarafından Barry Warsaw's avatar Barry Warsaw

Roumen Petrov's fix for when all paths are absolute. (Issue 10520)

üst 30b341f1
......@@ -38,7 +38,8 @@ def add_dir_to_list(dirlist, dir):
for i, path in enumerate(dirlist):
if not os.path.isabs(path):
dirlist.insert(i + 1, dir)
break
return
dirlist.insert(0, dir)
def macosx_sdk_root():
"""
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment