[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [40398] trunk/blender/SConstruct: Ignore . Blanguages and .bfont.ttf when installing.

Sergey Sharybin g.ulairi at gmail.com
Tue Sep 20 16:41:01 CEST 2011


Revision: 40398
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=40398
Author:   nazgul
Date:     2011-09-20 14:41:01 +0000 (Tue, 20 Sep 2011)
Log Message:
-----------
Ignore .Blanguages and .bfont.ttf when installing.
This files aren't used by blender anymore but they leads to
portable install when using scons.

Modified Paths:
--------------
    trunk/blender/SConstruct

Modified: trunk/blender/SConstruct
===================================================================
--- trunk/blender/SConstruct	2011-09-20 14:28:54 UTC (rev 40397)
+++ trunk/blender/SConstruct	2011-09-20 14:41:01 UTC (rev 40398)
@@ -522,11 +522,13 @@
                 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




More information about the Bf-blender-cvs mailing list