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:
Diffstat (limited to 'tools/scons/bs/bs_arc.py')
-rw-r--r--tools/scons/bs/bs_arc.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/scons/bs/bs_arc.py b/tools/scons/bs/bs_arc.py
index c591f7e3162..b215b9dc977 100644
--- a/tools/scons/bs/bs_arc.py
+++ b/tools/scons/bs/bs_arc.py
@@ -151,7 +151,10 @@ def zipit(env, target, source):
pf = "cygwin"
if bs_globals.user_options_dict['BUILD_BINARY'] == 'release':
- blendname = "blender-" + bs_globals.version + "-" + bs_globals.config_guess
+ if sys.platform == 'cygwin':
+ blendname = "blender-" + bs_globals.version + "-" + pf
+ else:
+ blendname = "blender-" + bs_globals.version + "-" + bs_globals.config_guess
else:
blendname = "bf_blender_" + pf + "_" + today