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:
authorDalai Felinto <dfelinto@gmail.com>2018-04-25 10:28:35 +0300
committerDalai Felinto <dfelinto@gmail.com>2018-04-25 10:30:55 +0300
commit5285de16f3e8f6b29a85eda5d7632a98cd0cddfe (patch)
tree39bd9ee3948c0d953fc7862410c7e93996cc8774
parentbb92d9a9466e4eb924d8be90ec5ddd4be2b70d95 (diff)
Fix string comparison in GNUMakefile for linux systems
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 46f0fa18eec..23903d36e63 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -424,7 +424,7 @@ icons: .FORCE
"$(BLENDER_DIR)/release/datafiles/prvicons_update.py"
update: .FORCE
- if [ "$(OS_NCASE)" == "darwin" ] && [ ! -d "../lib/$(OS_NCASE)" ]; then \
+ if [ "$(OS_NCASE)" = "darwin" ] && [ ! -d "../lib/$(OS_NCASE)" ]; then \
svn checkout https://svn.blender.org/svnroot/bf-blender/trunk/lib/$(OS_NCASE) ../lib/$(OS_NCASE) ; \
fi
if [ -d "../lib" ]; then \