[Bf-blender-cvs] [4815bd77480] master: Fix wrong detection in recent ninja build change

Brecht Van Lommel noreply at git.blender.org
Mon Aug 12 17:28:14 CEST 2019


Commit: 4815bd77480909ac0f2a3fe000dbef2fc64bf61d
Author: Brecht Van Lommel
Date:   Mon Aug 12 17:26:59 2019 +0200
Branches: master
https://developer.blender.org/rB4815bd77480909ac0f2a3fe000dbef2fc64bf61d

Fix wrong detection in recent ninja build change

===================================================================

M	GNUmakefile

===================================================================

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



More information about the Bf-blender-cvs mailing list