From 4ea25d834bb3981e2ed6dba0167bb91c2f10d16d Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Thu, 14 Nov 2019 10:33:02 +0100 Subject: [PATCH] buildtypes/meson: introduce BEE_NINJAFLAGS Since `ninja` and `make` are not command line options compatible the usage of BEE_MAKEFLAGS is wrong. Use BEE_NINJAFLAGS instead. --- buildtypes/meson.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildtypes/meson.sh.in b/buildtypes/meson.sh.in index c4cfd95..f1583b5 100644 --- a/buildtypes/meson.sh.in +++ b/buildtypes/meson.sh.in @@ -45,7 +45,7 @@ bee_configure() { #### bee_build() ############################################################## bee_build() { - start_cmd ninja -v -C ${B} ${BEE_MAKEFLAGS} "${@}" + start_cmd ninja -v -C ${B} ${BEE_NINJAFLAGS} "${@}" } #### bee_install() ############################################################