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:
authorSimon Clitherow <aphex@nildram.co.uk>2005-10-13 00:51:00 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2005-10-13 00:51:00 +0400
commit6c33918c5640143c3caaa8715f092b7f1d349c0b (patch)
tree8daa0ee18185027d845857f989ee3de55ff69685 /tools
parent88f6295dc6d8a34d76965fd62dbe52777125adb0 (diff)
last minute updates for releasing on Windows...
scons 'wininst' target fixes (py2.3 -> py2.4)
Diffstat (limited to 'tools')
-rw-r--r--tools/scons/bs/bs_dirs.py17
1 files changed, 3 insertions, 14 deletions
diff --git a/tools/scons/bs/bs_dirs.py b/tools/scons/bs/bs_dirs.py
index 056bf19cd91..75b2c50fab8 100644
--- a/tools/scons/bs/bs_dirs.py
+++ b/tools/scons/bs/bs_dirs.py
@@ -59,7 +59,7 @@ def preparedist():
shutil.copy("blender.exe", "dist/blender.exe")
if bs_globals.user_options_dict['BUILD_BLENDER_PLAYER'] == 1:
shutil.copy("blenderplayer.exe", "dist/blenderplayer.exe")
- shutil.copy("../lib/windows/python/lib/python23.dll", "dist/python23.dll")
+ shutil.copy("../lib/windows/python/lib/python24.dll", "dist/python24.dll")
shutil.copy("../lib/windows/sdl/lib/SDL.dll", "dist/SDL.dll")
shutil.copy("../lib/windows/gettext/lib/gnu_gettext.dll", "dist/gnu_gettext.dll")
elif sys.platform in ['linux2', 'linux-i386', 'freebsd4', 'freebsd5']:
@@ -77,25 +77,14 @@ def preparedist():
shutil.copytree(".blender/", "../dist/.blender")
os.chdir(startdir)
if os.path.isdir("dist/.blender/scripts"):
- shutil.rmtree("dist/.blender/scripts")
-
- if os.path.isdir("dist/plugins"):
- shutil.rmtree("dist/plugins")
-
- os.makedirs("dist/plugins/include")
- shutil.copy("source/blender/blenpluginapi/documentation.h", "dist/plugins/include/documentation.h")
- shutil.copy("source/blender/blenpluginapi/floatpatch.h", "dist/plugins/include/floatpatch.h")
- shutil.copy("source/blender/blenpluginapi/iff.h", "dist/plugins/include/iff.h")
- shutil.copy("source/blender/blenpluginapi/plugin.h", "dist/plugins/include/plugin.h")
- shutil.copy("source/blender/blenpluginapi/util.h", "dist/plugins/include/util.h")
+ shutil.rmtree("dist/.blender/scripts") if os.path.isdir("dist/plugins"): shutil.rmtree("dist/plugins") os.makedirs("dist/plugins/include") shutil.copy("source/blender/blenpluginapi/documentation.h", "dist/plugins/include/documentation.h") shutil.copy("source/blender/blenpluginapi/floatpatch.h", "dist/plugins/include/floatpatch.h") shutil.copy("source/blender/blenpluginapi/iff.h", "dist/plugins/include/iff.h") shutil.copy("source/blender/blenpluginapi/plugin.h", "dist/plugins/include/plugin.h") shutil.copy("source/blender/blenpluginapi/util.h", "dist/plugins/include/util.h")
os.chdir("release")
shutil.copytree("scripts/", "../dist/.blender/scripts")
-
# finally copy auxiliaries (readme, license, etc.)
if sys.platform == 'win32':
shutil.copy("windows/extra/Help.url", "../dist/Help.url")
- shutil.copy("windows/extra/Python23.zip", "../dist/Python23.zip")
+ shutil.copy("windows/extra/Python24.zip", "../dist/Python24.zip")
shutil.copy("windows/extra/zlib.pyd", "../dist/zlib.pyd")
shutil.copy("text/copyright.txt", "../dist/copyright.txt")
shutil.copy("text/blender.html", "../dist/blender.html")