From b29292a87b544d09da6b7d13504ff6e6dd3fd650 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Wed, 21 Jul 2021 16:58:25 +0200 Subject: [PATCH] build: unbreak 'nocheck' MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit to skip test cases for faster builds or in case your local system does not support running (all) tests.. Signed-off-by: Fabian Grünbichler Signed-off-by: Thomas Lamprecht --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index ed7182bc..d6c1acf5 100644 --- a/Makefile +++ b/Makefile @@ -206,7 +206,9 @@ install: $(COMPILED_BINS) install -m755 $(COMPILEDIR)/$(i) $(DESTDIR)$(LIBEXECDIR)/proxmox-backup/ ;) $(MAKE) -C www install $(MAKE) -C docs install +ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) $(MAKE) test # HACK, only test now to avoid clobbering build files with wrong config +endif .PHONY: upload upload: ${SERVER_DEB} ${CLIENT_DEB} ${RESTORE_DEB} ${DOC_DEB}