From 639485ba099804df98b361b6f16f76c11b4415b2 Mon Sep 17 00:00:00 2001 From: Bryan Biedenkapp Date: Tue, 15 Mar 2022 22:38:03 -0400 Subject: [PATCH] check if debuild exists, otherwise abort; --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 75c51825..f4383c57 100644 --- a/Makefile +++ b/Makefile @@ -121,6 +121,7 @@ install: all mkdir -p /opt/dvm/log || true dpkg: clean + which debuild || (echo "debuild is missing? Is 'devscripts' package installed?"; exit 1) tar -caf ../dvmhost_1.0.0.orig.tar.gz --exclude=.git --exclude=.gitattributes --exclude=.gitignore --exclude=.vscode -v . mv ../dvmhost_1.0.0.orig.tar.gz . mkdir -p dpkg_build