[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39769] branches/soc-2011-garlic/ SConstruct: Fix locale+font copy.

Nathan Letwory nathan at letworyinteractive.com
Mon Aug 29 08:28:09 CEST 2011


Revision: 39769
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39769
Author:   jesterking
Date:     2011-08-29 06:28:09 +0000 (Mon, 29 Aug 2011)
Log Message:
-----------
Fix locale+font copy.

Wrong dir was being walked, causing the locales and font to not be copied.

Modified Paths:
--------------
    branches/soc-2011-garlic/SConstruct

Modified: branches/soc-2011-garlic/SConstruct
===================================================================
--- branches/soc-2011-garlic/SConstruct	2011-08-29 06:19:55 UTC (rev 39768)
+++ branches/soc-2011-garlic/SConstruct	2011-08-29 06:28:09 UTC (rev 39769)
@@ -493,8 +493,8 @@
 dottargetlist = []
 scriptinstall = []
 
-if  env['OURPLATFORM']!='darwin':
-        for dp, dn, df in os.walk('bin/.blender'):
+if env['OURPLATFORM']!='darwin':
+        for dp, dn, df in os.walk('release/bin/.blender'):
             if '.svn' in dn:
                 dn.remove('.svn')
             if '_svn' in dn:




More information about the Bf-blender-cvs mailing list