]> git.proxmox.com Git - proxmox-secure-boot-support.git/commitdiff
buildsys: fix DEB variable name, just one package now
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 11 Apr 2024 10:46:56 +0000 (12:46 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Thu, 11 Apr 2024 10:46:58 +0000 (12:46 +0200)
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>
Makefile

index a9b1f0d051791a341f224c5cc9cc5cfb03f3d64d..663ffe34f1ae41baed3c2fd55135e34c9c98d4cb 100644 (file)
--- 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