From 3dff2a5a7d696a5a659f2f384236aa6672874f18 Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 17 May 2023 19:38:09 +0200 Subject: [PATCH] buildsys: avoid circular dependency $(DEBS) contains $(DEB), so don't make the former dependent of the latter. Signed-off-by: Thomas Lamprecht --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1a32c86..615c077 100644 --- a/Makefile +++ b/Makefile @@ -21,11 +21,11 @@ $(BUILDDIR): src debian echo "git clone git://git.proxmox.com/git/proxmox-mini-journal\\ngit checkout $(GITVERSION)" > $(BUILDDIR)/debian/SOURCE .PHONY: deb -deb: $(DEBS) -$(DEBS): $(DEB) +deb: $(DEB) +$(DBGDEB): $(DEB) $(DEB): $(BUILDDIR) cd $(BUILDDIR); dpkg-buildpackage -b -us -uc - lintian $(DEB) + lintian $(DEBS) .PHONY: dsc dsc: $(DSC) -- 2.39.5