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:
authorWillian Padovani Germano <wpgermano@gmail.com>2005-04-16 22:25:42 +0400
committerWillian Padovani Germano <wpgermano@gmail.com>2005-04-16 22:25:42 +0400
commitfa5d910f93c0cb279f5a41af9cc3d36d53f8c94f (patch)
tree86202b41c7d56d2b1fc857f2693de8e0f129f478 /release/windows/installer/00.sconsblender.nsi
parentdfe3ad0d7bb09129adee4eb27a7367ae6c40b54e (diff)
Updating build systems: folder release/bpydata/ moved to release/scripts/bpydata/
It seemed trivial enough, so I updated all systems (makefiles, xcode, scons, scons win installer), please complain if something went wrong. Mostly it was just removing release/bpydata references, since the release/scripts dir is already worked on recursevely, handling dirs inside it. For the scons nsi file writer script I had to write code for each new dir, but it can be recoded recursively, too (in fact joining all release stuff in a single dir tree with nothing else would be a good idea, making installation code simpler). Since it's just python and I have a little more time now, I can help scons managers if they still need. Thanks Campbell Barton for reporting.
Diffstat (limited to 'release/windows/installer/00.sconsblender.nsi')
-rw-r--r--release/windows/installer/00.sconsblender.nsi12
1 files changed, 9 insertions, 3 deletions
diff --git a/release/windows/installer/00.sconsblender.nsi b/release/windows/installer/00.sconsblender.nsi
index b6dd8f4c4b4..4bbea68c62f 100644
--- a/release/windows/installer/00.sconsblender.nsi
+++ b/release/windows/installer/00.sconsblender.nsi
@@ -244,8 +244,12 @@ Section "Blender-VERSION (required)" SecCopyUI
SetOutPath $BLENDERHOME\.blender\scripts
[SCRIPTCONTS]
- SetOutPath $BLENDERHOME\.blender\bpydata
- [BPYCONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpymodules
+ [SCRIPTMODCONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata
+ [SCRIPTDATACONTS]
+ SetOutPath $BLENDERHOME\.blender\scripts\bpydata\config
+ [SCRIPTDATACFGCONTS]
; Language files
[LANGUAGECONTS]
@@ -306,7 +310,9 @@ Section "Uninstall"
; remove directories used.
RMDir /r $INSTDIR\.blender\locale
RMDir /r $INSTDIR\.blender\scripts
- RMDir /r $INSTDIR\.blender\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpymodules
+ RMDir /r $INSTDIR\.blender\scripts\bpydata
+ RMDir /r $INSTDIR\.blender\scripts\bpydata\config
RMDir $INSTDIR\.blender
RMDir "$SMPROGRAMS\Blender Foundation\Blender"
RMDir "$SMPROGRAMS\Blender Foundation"