From 5285de16f3e8f6b29a85eda5d7632a98cd0cddfe Mon Sep 17 00:00:00 2001 From: Dalai Felinto Date: Wed, 25 Apr 2018 09:28:35 +0200 Subject: Fix string comparison in GNUMakefile for linux systems --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 \ -- cgit v1.2.3