Skip to content

Commit

Permalink
Supposed typo: pypa#565 (comment), On CentOS 7 building certain proje…
Browse files Browse the repository at this point in the history
…cts fails without this "fix". Also relevant, spotify/dh-virtualenv#150 and numpy/numpy#7570.
  • Loading branch information
Neurocinetics committed Feb 1, 2017
1 parent c1ef9e2 commit 2e1319b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions virtualenv.py
Expand Up @@ -1538,9 +1538,9 @@ def fix_lib64(lib_dir, symlink=True):
if os.path.lexists(lib64_link):
return
if symlink:
os.symlink('lib', lib64_link)
os.symlink(lib_dir, lib64_link)
else:
copyfile('lib', lib64_link)
copyfile(lib_dir, lib64_link)

def resolve_interpreter(exe):
"""
Expand Down

0 comments on commit 2e1319b

Please sign in to comment.