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
path: root/tools
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2006-02-05 21:03:02 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-05 21:03:02 +0300
commitffcbde116e8a2c1d8f537a05818629e6d1177078 (patch)
tree30b5f2c4ab2bbdbc3221cefb27f94888661170e2 /tools
parentf92bf08d1e83186848a102a2d56b3f1e4de275a2 (diff)
==SCons==
* make sure PLATFORM_LINKFLAGS are used on Cygwin, too
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 4a631f84798..27365f4aab4 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -338,7 +338,7 @@ class BlenderEnvironment(SConsEnvironment):
def BlenderProg(self=None, builddir=None, progname=None, sources=None, includes=None, libs=None, libpath=None, binarykind=''):
print bc.HEADER+'Configuring program '+bc.ENDC+bc.OKGREEN+progname+bc.ENDC
lenv = self.Copy()
- if lenv['OURPLATFORM']=='win32-vc':
+ if lenv['OURPLATFORM'] in ['win32-vc', 'cygwin']:
lenv.Append(LINKFLAGS = Split(lenv['PLATFORM_LINKFLAGS']))
if lenv['OURPLATFORM']=='darwin':
lenv.Append(LINKFLAGS = lenv['PLATFORM_LINKFLAGS'])