try to pass ninja flags in deb package

This commit is contained in:
Alexander Kuzmenkov 2020-12-22 10:38:39 +03:00
parent def080c8ba
commit da2a2e8e26

2
debian/rules vendored
View File

@ -62,7 +62,7 @@ ifndef DISABLE_NINJA
NINJA=$(shell which ninja)
ifneq ($(NINJA),)
CMAKE_FLAGS += -GNinja
export MAKE=$(NINJA)
export MAKE=$(NINJA) $(NINJA_FLAGS)
endif
endif