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>2011-03-22 15:54:13 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2011-03-22 15:54:13 +0300
commite8dc841199aaabea86fa2d924e637ba56f312336 (patch)
tree2c2126c051f2e144c7484985af030292aa357364 /build_files/scons/tools
parenta79820d2849a6366353c7045e4fd5f161f6a70fa (diff)
Version and platform name were in wrong order.
Diffstat (limited to 'build_files/scons/tools')
-rw-r--r--build_files/scons/tools/btools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/scons/tools/btools.py b/build_files/scons/tools/btools.py
index 3e1f497bec0..17ee80e6dbd 100644
--- a/build_files/scons/tools/btools.py
+++ b/build_files/scons/tools/btools.py
@@ -546,7 +546,7 @@ def buildslave(target=None, source=None, env=None):
extension = '.tar.bz2'
outdir = os.path.abspath(env['BF_INSTALLDIR'])
- package_name = 'blender-' + env['OURPLATFORM'].split('-')[0] + '-'+VERSION+'-'+REVISION
+ package_name = 'blender-' + VERSION+'-'+REVISION + '-' + env['OURPLATFORM'].split('-')[0]
package_dir = os.path.normpath(outdir + os.sep + '..' + os.sep + package_name)
package_archive = os.path.normpath(outdir + os.sep + '..' + os.sep + package_name + extension)