buildsys: fix DEB variable name, just one package now

earlier this was part of another repo, now it's separate and there is
just one package anymore, so use the correct DEB variable to refer to
the binary debian packages that get build.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2024-04-11 12:46:56 +02:00
parent 05dd8336e8
commit a806d88339

View File

@ -20,7 +20,7 @@ $(BUILD_DIR): debian
$(DEB): $(BUILD_DIR)
cd $(BUILD_DIR); dpkg-buildpackage -b -uc -us
lintian $(DEBS)
lintian $(DEB)
$(DSC): $(BUILD_DIR)
cd $(BUILD_DIR); dpkg-buildpackage -S -uc -us
@ -31,8 +31,8 @@ sbuild: $(DSC)
.PHONY: upload
upload: UPLOAD_DIST ?= $(DEB_DISTRIBUTION)
upload: $(DEBS)
tar cf - $(DEBS)|ssh repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
upload: $(DEB)
tar cf - $(DEB)|ssh repoman@repo.proxmox.com -- upload --product pve,pmg,pbs --dist $(UPLOAD_DIST)
.PHONY: clean distclean
distclean: clean