diff options
| author | Victor Lin <bornstub@gmail.com> | 2014-10-23 15:06:51 -0700 |
|---|---|---|
| committer | Victor Lin <bornstub@gmail.com> | 2014-10-23 15:06:51 -0700 |
| commit | 8a3adb051a568b61e28214fac022868b806ed6bd (patch) | |
| tree | bbf535dd91a4cf19f82e39d169c95da8d2a9e4a9 /setuptools | |
| parent | 94825d75e6e838997e363a2e20b0e21fed0af35f (diff) | |
| download | python-setuptools-bitbucket-8a3adb051a568b61e28214fac022868b806ed6bd.tar.gz | |
Fix #277, data files in symbol link directory are not included issue
Diffstat (limited to 'setuptools')
| -rw-r--r-- | setuptools/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/__init__.py b/setuptools/__init__.py index d99ab2a6..6c51072d 100644 --- a/setuptools/__init__.py +++ b/setuptools/__init__.py @@ -139,7 +139,7 @@ def findall(dir = os.curdir): (relative to 'dir'). """ all_files = [] - for base, dirs, files in os.walk(dir): + for base, dirs, files in os.walk(dir, followlinks=True): if base==os.curdir or base.startswith(os.curdir+os.sep): base = base[2:] if base: |
