5
0
mirror of git://git.proxmox.com/git/proxmox-mini-journalreader.git synced 2025-01-03 01:17:48 +03:00

buildsys: avoid circular dependency

$(DEBS) contains $(DEB), so don't make the former dependent of the
latter.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-05-17 19:38:09 +02:00
parent 66c4d47b85
commit 3dff2a5a7d

View File

@ -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)