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>2013-06-30 20:20:59 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-06-30 20:20:59 +0400
commit2c506fd70c8404852c7b8d1592daf887dcd08576 (patch)
tree46a7581c5d95f2f78104158fd3a69d440b10f3a7 /build_files/build_environment
parentd492a9ffa93f2fcffeae2b6f883d8835c0eeec8a (diff)
Patch [#35897] install_deps: add OpenEXR to ldconfig by Gavin Howard, thanks.
Diffstat (limited to 'build_files/build_environment')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 7b41f156ea8..0444f9d288a 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -1142,6 +1142,9 @@ EOF
fi
_with_built_openexr=true
+
+ # Just always run it, much simpler this way!
+ _need_openexr_ldconfig=true
}
#### Build OIIO ####
@@ -3135,6 +3138,9 @@ fi
if [ $_need_oiio_ldconfig == true ]; then
sudo sh -c "echo \"$INST/oiio/lib\" > /etc/ld.so.conf.d/oiio.conf"
fi
+if [ $_need_openexr_ldconfig == true ]; then
+ sudo sh -c "echo \"$INST/openexr/lib\" > /etc/ld.so.conf.d/openexr.conf"
+fi
sudo /sbin/ldconfig # XXX OpenSuse does not include sbin in command path with sudo!!!
INFO ""