python-virtualenv/pypa-virtualenv-1189.patch

27 lines
895 B
Diff

From 786675a83f494202cb9522d57a98e5ddc0d7405e Mon Sep 17 00:00:00 2001
From: Ashley Whetter <asw@dneg.com>
Date: Tue, 3 Jul 2018 10:48:19 -0700
Subject: [PATCH] Fixed failure to copy on platforms that use lib64
The current behaviour attempts to copy a "lib" folder from the current directory,
instead of copying the "lib" folder inside the virtualenv. Therefore the copying would fail.
This fixes that by always copying the "lib" folder from the virtualenv.
---
virtualenv.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/virtualenv.py b/virtualenv.py
index c008a395..34c2f6a1 100755
--- a/virtualenv.py
+++ b/virtualenv.py
@@ -1559,7 +1559,7 @@ def fix_lib64(lib_dir, symlink=True):
if symlink:
os.symlink('lib', lib64_link)
else:
- copyfile('lib', lib64_link)
+ copyfile(lib_dir, lib64_link)
def resolve_interpreter(exe):
"""