From 4faeb84d2e8f83792ca1be738b013cc5e415ae34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Ibarra=20Corretg=C3=A9?= Date: Thu, 14 May 2020 09:27:50 +0200 Subject: [PATCH] build: fix using parallell make We don't support it, so make sure targets run serially. Fixe: https://github.com/jitsi/jitsi-meet/issues/6647 --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index 0cb668e53..871d1b758 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,7 @@ compile: clean: rm -fr $(BUILD_DIR) +.NOTPARALLEL: deploy: deploy-init deploy-appbundle deploy-rnnoise-binary deploy-lib-jitsi-meet deploy-libflac deploy-css deploy-local deploy-init: @@ -79,6 +80,7 @@ deploy-css: deploy-local: ([ ! -x deploy-local.sh ] || ./deploy-local.sh) +.NOTPARALLEL: dev: deploy-init deploy-css deploy-rnnoise-binary deploy-lib-jitsi-meet deploy-libflac $(WEBPACK_DEV_SERVER)