From 69f111cb75a3f0e9471f5355b255db04902866f2 Mon Sep 17 00:00:00 2001 From: Matthias Kruk Date: Thu, 25 Nov 2021 14:25:08 +0900 Subject: [PATCH] Makefile: Disable tests during build process The test suite is executed automatically by dpkg-buildpackage during the build process. However, because the test framework is not set up on the build machine, this causes the packaging process to fail. This commit removes the test rule from the Makefile to avoid issues with the build system until the test framework is set up. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4ff0c7a..13da461 100644 --- a/Makefile +++ b/Makefile @@ -8,8 +8,8 @@ all: clean: -test: - ./test.sh +# test: +# ./test.sh install: mkdir -p $(DESTDIR)/$(PREFIX)/share/toolbox -- 2.47.3