diff --git a/Makefile b/Makefile index 4fdd0f2..db644b5 100644 --- a/Makefile +++ b/Makefile @@ -9,6 +9,7 @@ BUILDDIR ?= ${PACKAGE}-${DEB_VERSION_UPSTREAM} export VERSION=$(DEB_VERSION_UPSTREAM) DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb +DBG_DEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb DSC=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}.dsc ${BUILDDIR}: src/ debian/ @@ -34,7 +35,7 @@ dinstall: ${DEB} .PHONY: upload upload: ${DEB} - tar cf - ${DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch ${ARCH} + tar cf - ${DEB} ${DBG_DEB} | ssh repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch ${ARCH} .PHONY: distclean clean distclean: clean diff --git a/src/Makefile b/src/Makefile index 229866e..0c9c007 100644 --- a/src/Makefile +++ b/src/Makefile @@ -34,7 +34,7 @@ install: spiceterm spiceterm.1 mkdir -p ${DESTDIR}/usr/share/man/man1 install -m 0644 spiceterm.1 ${DESTDIR}/usr/share/man/man1 mkdir -p ${DESTDIR}/usr/bin - install -s -m 0755 spiceterm ${DESTDIR}/usr/bin + install -m 0755 spiceterm ${DESTDIR}/usr/bin .PHONY: test test: spiceterm