From d704b3961e49cf6c64c49ec80c12dffbf163b463 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sun, 12 Oct 2014 19:04:52 +0530 Subject: [PATCH] Fix issue with symlinks during recursive copy during install --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index df938a7d1..68bcf3ede 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,7 @@ class CustomInstallData(install_data): for target, source in DIRECTORIES_TO_COPY: if not os.path.exists(target): log.info("recursive copy '%s' to '%s'", source, target) - shutil.copytree(source, target) + shutil.copytree(source, target, symlinks=True) find_packages = setuptools.PEP420PackageFinder.find