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:
authorSergey Sharybin <sergey.vfx@gmail.com>2011-09-20 18:41:01 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2011-09-20 18:41:01 +0400
commitf198961ebcf1d6cb84a58d52d9ca6851cce2fbc4 (patch)
tree86ba9180b5782f624dbed0a1a648d78e62fa90bc /SConstruct
parenta130d298176cb6a0adf47fa3f2db7502374d3fc8 (diff)
Ignore .Blanguages and .bfont.ttf when installing.
This files aren't used by blender anymore but they leads to portable install when using scons.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 4 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct
index 01522b3ae29..42ee3342031 100644
--- a/SConstruct
+++ b/SConstruct
@@ -522,11 +522,13 @@ if env['OURPLATFORM']!='darwin':
dn.remove('_svn')
for f in df:
+ # This files aren't used anymore
+ if f in ['.Blanguages', '.bfont.ttf']:
+ continue
+
if not env['WITH_BF_INTERNATIONAL']:
if 'locale' in dp:
continue
- if f == '.Blanguages':
- continue
if not env['WITH_BF_FREETYPE']:
if f.endswith('.ttf'):
continue