[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [31508] trunk/blender/SConstruct: Skip also SVN administration files that start with _ instead of .

Nathan Letwory nathan at letworyinteractive.com
Sun Aug 22 02:07:23 CEST 2010


Revision: 31508
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=31508
Author:   jesterking
Date:     2010-08-22 02:07:23 +0200 (Sun, 22 Aug 2010)

Log Message:
-----------
Skip also SVN administration files that start with _ instead of .

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

Modified: trunk/blender/SConstruct
===================================================================
--- trunk/blender/SConstruct	2010-08-21 20:11:45 UTC (rev 31507)
+++ trunk/blender/SConstruct	2010-08-22 00:07:23 UTC (rev 31508)
@@ -427,6 +427,8 @@
 		for dp, dn, df in os.walk(bundle):
 			if '.svn' in dn:
 				dn.remove('.svn')
+			if '_svn' in dn:
+				dn.remove('_svn')
 			dir=env['BF_INSTALLDIR']+dp[len(bundledir):]
 			source=[dp+os.sep+f for f in df]
 			blenderinstall.append(env.Install(dir=dir,source=source))
@@ -445,6 +447,8 @@
 		for dp, dn, df in os.walk('bin/.blender'):
 			if '.svn' in dn:
 				dn.remove('.svn')
+			if '_svn' in dn:
+				dn.remove('_svn')
 			
 			for f in df:
 				if not env['WITH_BF_INTERNATIONAL']:
@@ -481,6 +485,8 @@
 				for dp, dn, df in os.walk(scriptpath):
 					if '.svn' in dn:
 						dn.remove('.svn')
+					if '_svn' in dn:
+						dn.remove('_svn')
 					
 					dir = os.path.join(env['BF_INSTALLDIR'], VERSION)
 					dir += os.sep + os.path.basename(scriptpath) + dp[len(scriptpath):]
@@ -496,6 +502,8 @@
 	for tp, tn, tf in os.walk('release/freedesktop/icons'):
 		if '.svn' in tn:
 			tn.remove('.svn')
+		if '_svn' in tn:
+			tn.remove('_svn')
 		for f in tf:
 			iconlist.append(os.path.join(tp, f))
 			icontargetlist.append( os.path.join(*([env['BF_INSTALLDIR']] + tp.split(os.sep)[2:] + [f])) )
@@ -522,6 +530,8 @@
 for tp, tn, tf in os.walk('release/plugins'):
 	if '.svn' in tn:
 		tn.remove('.svn')
+	if '_svn' in tn:
+		tn.remove('_svn')
 	df = tp[8:] # remove 'release/'
 	for f in tf:
 		pluglist.append(os.path.join(tp, f))
@@ -554,6 +564,8 @@
 for tp, tn, tf in os.walk('release/text'):
 	if '.svn' in tn:
 		tn.remove('.svn')
+	if '_svn' in tn:
+		tn.remove('_svn')
 	for f in tf:
 		textlist.append(tp+os.sep+f)
 





More information about the Bf-blender-cvs mailing list