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:
authorNathan Letwory <nathan@letworyinteractive.com>2007-05-12 18:11:27 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2007-05-12 18:11:27 +0400
commiteea80750a67f895376da5bddd06ac6fa00dd3fdc (patch)
tree34717d6c4c7d391b39630dc6fee2c90321dbb347 /SConstruct
parenta8a8742f1c7c2dedd7d61ab6cbb959df70a6d02d (diff)
* handle move CVS->SVN, skip .svn administrative directories
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct10
1 files changed, 10 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index db690a2967c..8fab44d5576 100644
--- a/SConstruct
+++ b/SConstruct
@@ -515,6 +515,8 @@ if env['OURPLATFORM']=='darwin':
for dp, dn, df in os.walk(bundle):
if 'CVS' in dn:
dn.remove('CVS')
+ 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))
@@ -527,6 +529,8 @@ dottargetlist = []
for dp, dn, df in os.walk('bin/.blender'):
if 'CVS' in dn:
dn.remove('CVS')
+ if '.svn' in dn:
+ dn.remove('.svn')
for f in df:
dotblendlist.append(dp+os.sep+f)
dottargetlist.append(env['BF_INSTALLDIR']+dp[3:]+os.sep+f)
@@ -542,6 +546,8 @@ scriptpath='release/scripts'
for dp, dn, df in os.walk(scriptpath):
if 'CVS' in dn:
dn.remove('CVS')
+ if '.svn' in dn:
+ dn.remove('.svn')
dir=env['BF_INSTALLDIR']+'/.blender/scripts'+dp[len(scriptpath):]
source=[dp+os.sep+f for f in df]
scriptinstall.append(env.Install(dir=dir,source=source))
@@ -552,6 +558,8 @@ plugtargetlist = []
for tp, tn, tf in os.walk('release/plugins'):
if 'CVS' in tn:
tn.remove('CVS')
+ if '.svn' in dn:
+ dn.remove('.svn')
for f in tf:
pluglist.append(tp+os.sep+f)
plugtargetlist.append(env['BF_INSTALLDIR']+tp[7:]+os.sep+f)
@@ -566,6 +574,8 @@ texttargetlist = []
for tp, tn, tf in os.walk('release/text'):
if 'CVS' in tn:
tn.remove('CVS')
+ if '.svn' in tn:
+ tn.remove('.svn')
for f in tf:
textlist.append(tp+os.sep+f)