5
0
mirror of git://git.proxmox.com/git/pve-ha-manager.git synced 2025-02-07 05:57:33 +03:00

buildsys: use full DEB_VERSION and correct DEB_HOST_ARCH

The DEB_HOST_ARCH is the one the package is actually built for, the
DEB_BUILD_ARCH is the one of the build host; having this correct
makes cross-building easier, but otherwise it makes no difference.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht 2023-05-24 19:10:42 +02:00
parent 69e37516e9
commit df0c583fc3

View File

@ -5,14 +5,14 @@ PACKAGE=pve-ha-manager
SIMPACKAGE=pve-ha-simulator
GITVERSION:=$(shell git rev-parse HEAD)
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION_UPSTREAM)
BUILDDIR ?= $(PACKAGE)-$(DEB_VERSION)
DEB=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
DBG_DEB=$(PACKAGE)-dbgsym_$(DEB_VERSION_UPSTREAM_REVISION)_$(DEB_BUILD_ARCH).deb
DEB=$(PACKAGE)_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
DBG_DEB=$(PACKAGE)-dbgsym_$(DEB_VERSION)_$(DEB_HOST_ARCH).deb
DSC=$(PACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
SIMDEB=$(SIMPACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION)_all.deb
SIMDSC=$(SIMPACKAGE)_$(DEB_VERSION_UPSTREAM_REVISION).dsc
DSC=$(PACKAGE)_$(DEB_VERSION).dsc
SIMDEB=$(SIMPACKAGE)_$(DEB_VERSION)_all.deb
SIMDSC=$(SIMPACKAGE)_$(DEB_VERSION).dsc
all: deb
@ -48,5 +48,5 @@ distclean: clean
.PHONY: upload
upload: $(DEB) $(SIMDEB)
tar cf - $(DEB) $(DBG_DEB) $(SIMDEB)|ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch $(DEB_BUILD_ARCH)
tar cf - $(DEB) $(DBG_DEB) $(SIMDEB)|ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch $(DEB_HOST_ARCH)