SCons: Ignore .svn folder when installing site-packages

This commit is contained in:
Sergey Sharybin 2015-04-29 14:29:42 +05:00
parent e37373d96e
commit 615414fa36

@ -670,6 +670,8 @@ def WinPyBundle(target=None, source=None, env=None):
py_dir += '/release/site-packages'
# grr, we have to do one by one because the dir exists
for f in os.listdir(py_dir):
if f == '.svn':
continue
fn_src = os.path.join(py_dir, f)
fn_dst = os.path.join(py_target, f)