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:
authorBastien Montagne <montagne29@wanadoo.fr>2016-01-04 22:59:52 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-01-04 22:59:52 +0300
commit1b7fdb6a6086859679e265e5a2d59636fd9bdf4a (patch)
tree4c637db7ba9f9d9bd11aef3851d7f467af76b1f7 /build_files
parent2ac555fe47f575e37d0feb89c6ba23fe684ed44b (diff)
Fix missing 'WITH_OPENCOLORIO/OPENIMAGEIO' defines in install_deps final message.
Reported by venomgfx on IRC, thanks.
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh10
1 files changed, 6 insertions, 4 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index b0c99f95082..10d7c3de4bf 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -3707,9 +3707,10 @@ print_info() {
fi
if [ -d $INST/ocio ]; then
- _1="-D OPENCOLORIO_ROOT_DIR=$INST/ocio"
+ _1="-D WITH_OPENCOLORIO=ON"
+ _2="-D OPENCOLORIO_ROOT_DIR=$INST/ocio"
PRINT " $_1"
- _buildargs="$_buildargs -U *OPENCOLORIO* $_1"
+ _buildargs="$_buildargs -U *OPENCOLORIO* $_1 $_2"
fi
if [ -d $INST/openexr ]; then
@@ -3719,9 +3720,10 @@ print_info() {
fi
if [ -d $INST/oiio ]; then
- _1="-D OPENIMAGEIO_ROOT_DIR=$INST/oiio"
+ _1="-D WITH_OPENIMAGEIO=ON"
+ _2="-D OPENIMAGEIO_ROOT_DIR=$INST/oiio"
PRINT " $_1"
- _buildargs="$_buildargs -U *OPENIMAGEIO* $_1"
+ _buildargs="$_buildargs -U *OPENIMAGEIO* $_1 $_2"
fi
if [ "$OSL_SKIP" = false ]; then