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:
authorSybren A. Stüvel <sybren@blender.org>2019-12-24 13:29:37 +0300
committerSybren A. Stüvel <sybren@blender.org>2019-12-24 14:10:54 +0300
commit4c295ad47805acddfff2254f53c56644fbbb68b9 (patch)
tree5b79bcf414b0b7e7395f1a56bf347ae576d8aceb /build_files
parentd6169384491bf9c4b944d67fadf802bec861adda (diff)
install_deps.sh: No longer forcing Alembic sources to be redownloaded
For no apparent reason, when building Alembic the script would always re-download and re-extract the Alembic source code. This is no longer the case, and it now only happens if the source directory is missing. Since the source directory name contains the Alembic version, it will automatically trigger a download+extract when the version changes.
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index b6184ecb33a..4e69bf08dd2 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -2353,7 +2353,7 @@ compile_ALEMBIC() {
prepare_opt
- if [ ! -d $_src -o true ]; then
+ if [ ! -d $_src ]; then
mkdir -p $SRC
download ALEMBIC_SOURCE[@] "$_src.tar.gz"