From a806d88339b3dab3942fad974b8fe2f76d64b39d Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Thu, 11 Apr 2024 12:46:56 +0200 Subject: [PATCH] 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 --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a9b1f0d..663ffe3 100644 --- a/Makefile +++ b/Makefile @@ -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 -- 2.39.2