Fix string comparison in GNUMakefile for linux systems

This commit is contained in:
Dalai Felinto 2018-04-25 09:28:35 +02:00
parent bb92d9a946
commit 5285de16f3
1 changed files with 1 additions and 1 deletions

View File

@ -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 \