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-15 16:53:44 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2007-05-15 16:53:44 +0400
commitd0c94b83f14cb0a0a8ac484f6e098323419b8dcc (patch)
treeb755d2f4595fec9eba33ac592dd85ca88c193a98 /SConstruct
parent7ddc602ebf948d763996cb7a039755580d7a2bb1 (diff)
=== SCons ===
* cvs->svn conversion: handle properly also release/scripts .svn dir (= skip it!)
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct12
1 files changed, 6 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index 8fab44d5576..7c8ab844aa2 100644
--- a/SConstruct
+++ b/SConstruct
@@ -515,8 +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')
+ 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))
@@ -530,7 +530,7 @@ for dp, dn, df in os.walk('bin/.blender'):
if 'CVS' in dn:
dn.remove('CVS')
if '.svn' in dn:
- dn.remove('.svn')
+ dn.remove('.svn')
for f in df:
dotblendlist.append(dp+os.sep+f)
dottargetlist.append(env['BF_INSTALLDIR']+dp[3:]+os.sep+f)
@@ -547,7 +547,7 @@ for dp, dn, df in os.walk(scriptpath):
if 'CVS' in dn:
dn.remove('CVS')
if '.svn' in dn:
- dn.remove('.svn')
+ 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))
@@ -558,8 +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')
+ if '.svn' in tn:
+ tn.remove('.svn')
for f in tf:
pluglist.append(tp+os.sep+f)
plugtargetlist.append(env['BF_INSTALLDIR']+tp[7:]+os.sep+f)