Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-02-09 03:45:16 +0300
committerCampbell Barton <ideasman42@gmail.com>2011-02-09 03:45:16 +0300
commit711ba795f7abbae9d8315cda5a7221d6f18e13bc (patch)
treea2e92b8e2333fbc2382bd4a3c853581fa4b0c54b /SConstruct
parent32e3aac6bccb99fffa28dd4f26b26aecfea72929 (diff)
ignore __pycache__ dir for scons and cmake installation (py3.2 caches modules here).
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 5 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 03e61cd06b6..fe60d41c48d 100644
--- a/SConstruct
+++ b/SConstruct
@@ -489,11 +489,13 @@ if env['OURPLATFORM']!='darwin':
dn.remove('.svn')
if '_svn' in dn:
dn.remove('_svn')
-
+ if '__pycache__' in dn: # py3.2 cache dir
+ dn.remove('__pycache__')
+
dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
-
- source=[os.path.join(dp, f) for f in df if f[-3:]!='pyc']
+
+ source=[os.path.join(dp, f) for f in df if not f.endswith(".pyc")]
# To ensure empty dirs are created too
if len(source)==0:
env.Execute(Mkdir(dir))