From bc46d591377b06b7ee4ea390c0c51b9081788551 Mon Sep 17 00:00:00 2001 From: Dorian Stoll Date: Fri, 28 Jul 2023 22:31:21 +0200 Subject: [PATCH] fixup! pkg: debian: Fix setting LOCALVERSION --- .github/scripts/package/debian.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/scripts/package/debian.sh b/.github/scripts/package/debian.sh index 09e2444b6..caf9585eb 100644 --- a/.github/scripts/package/debian.sh +++ b/.github/scripts/package/debian.sh @@ -105,7 +105,10 @@ build-packages) # The DPKG in Ubuntu 22.04 defaults to using ZSTD, which is not yet supported by the DPKG in Debian 11 export KDEB_COMPRESS="xz" - make bindeb-pkg -j "$(nproc)" LOCALVERSION="${KERNEL_LOCALVERSION}" + # Set kernel localversion + export LOCALVERSION="${KERNEL_LOCALVERSION}" + + make bindeb-pkg -j "$(nproc)" popd || exit 1 popd || exit 1