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:
authorSergey Sharybin <sergey.vfx@gmail.com>2018-01-09 14:52:13 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2018-01-09 14:52:13 +0300
commit83e84b2c2c7c105074b7638af6f783603971e595 (patch)
tree423ae97ff8178dc156e331eb018b3d82c6e2f83c /build_files
parent375d27f230e41e4bcb53183082739c580f74c709 (diff)
parentce0fcf1378b6bdd01ff8fbcbccc31b00aa263e25 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index a3760910d25..c1ba2a3ab25 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -1254,7 +1254,11 @@ compile_Boost() {
#### Build OCIO ####
_init_ocio() {
_src=$SRC/OpenColorIO-$OCIO_VERSION
- _git=false
+ if [ "$OCIO_USE_REPO" = true ]; then
+ _git=true
+ else
+ _git=false
+ fi
_inst=$INST/ocio-$OCIO_VERSION
_inst_shortcut=$INST/ocio
}