Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Bug 1417958 - Normalize lib paths to appease VS2017's incremental lin…
…king. r=nalexander

--HG--
extra : rebase_source : d834aef165b35fec0c880656976267e03d68180d
  • Loading branch information
David Major committed Nov 17, 2017
1 parent 19e321e commit 02c9050
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/moz.configure/windows.configure
Expand Up @@ -260,7 +260,7 @@ def vc_path(c_compiler):
result = next
if p.lower() == 'bin':
break
return result
return os.path.normpath(result)


@depends(vc_path, c_compiler)
Expand Down
2 changes: 1 addition & 1 deletion config/expandlibs_exec.py
Expand Up @@ -142,7 +142,7 @@ def makelist(self):
f.writelines(content)
f.close()
idx = self.index(objs[0])
newlist = self[0:idx] + [ref] + [item for item in self[idx:] if item not in objs]
newlist = self[0:idx] + [ref] + [os.path.normpath(item) for item in self[idx:] if item not in objs]
self[0:] = newlist

def _getFoldedSections(self):
Expand Down

0 comments on commit 02c9050

Please sign in to comment.