From 5e9709bcd35ed809043bb2de91bd478a3a7ea09d Mon Sep 17 00:00:00 2001 From: Thomas Lamprecht Date: Wed, 7 Sep 2022 15:12:39 +0200 Subject: [PATCH] avoid upload of helpers package from non-master Signed-off-by: Thomas Lamprecht --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 42dca57..4ba0aae 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ HELPER_DEB=pve-kernel-helper_${DEB_VERSION_UPSTREAM_REVISION}_all.deb BUILD_DIR=build -DEBS=${KERNEL_DEB} ${HEADERS_DEB} ${HELPER_DEB} +DEBS=${KERNEL_DEB} ${HEADERS_DEB} SUBDIRS = proxmox-boot bin @@ -30,6 +30,7 @@ ${KERNEL_DEB}: debian cd ${BUILD_DIR}; debian/rules debian/control echo "git clone git://git.proxmox.com/git/pve-kernel-meta.git\\ngit checkout ${GITVERSION}" > ${BUILD_DIR}/debian/SOURCE cd ${BUILD_DIR}; dpkg-buildpackage -b -uc -us + rm ${HELPER_DEB} lintian ${DEBS} .PHONY: install