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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-12 18:26:59 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2019-08-12 18:28:01 +0300
commit4815bd77480909ac0f2a3fe000dbef2fc64bf61d (patch)
treee0b1e53c7e559b603854d6e8295c1606ddf8be81 /GNUmakefile
parent44d95cbf9561a3b8840fb2145c22e0411d22f26d (diff)
Fix wrong detection in recent ninja build change
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 2cd2c1a7443..4462a13207e 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -230,7 +230,7 @@ endif
# -----------------------------------------------------------------------------
# build tool
-ifeq "$(findstring ninja, $(MAKECMDGOALS))" ""
+ifneq "$(findstring ninja, $(MAKECMDGOALS))" ""
BUILD_CMAKE_ARGS:=$(BUILD_CMAKE_ARGS) -G Ninja
BUILD_COMMAND:=ninja
else