From 14dbc9c6873366ed930f55e0651c44a1e97c2a4d Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Tue, 19 Sep 2017 16:04:41 +0200 Subject: [PATCH] Makefile.in: use right build command Use ninja instead of ninja-build, which does not seem to exist on debian. --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index fb7a949fb..86efeef86 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,11 +1,11 @@ all: - ninja-build -C build + ninja -C build install: - ninja-build -C build install + ninja -C build install clean: - ninja-build -C build clean + ninja -C build clean run: all SPA_PLUGIN_DIR=build/spa/plugins \