linux-htc-flounder: add V=1 workaround (MR 5848)

Add a workaround so the kernel compile output is not silent (which leads
to pmbootstrap aborting the build). This will be fixed once upgrading to
linux >= 6.2.

Related: pmaports issue 1990
[ci:skip-build]: already built successfully in CI
This commit is contained in:
Oliver Smith 2024-11-24 11:38:53 +01:00
parent ae57a82b67
commit 864873e463
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -1,7 +1,7 @@
# Maintainer: Segfault <awarnecke002@hotmail.com>
pkgname=linux-htc-flounder
pkgver=6.0.0
pkgrel=3
pkgrel=4
pkgdesc="Google Nexus 9 kernel fork"
arch="aarch64"
_carch="arm64"
@ -33,8 +33,10 @@ prepare() {
build() {
unset LDFLAGS
# V=1: workaround for pma#1990
make O="$_outdir" ARCH="$_carch" CC="${CC:-gcc}" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS" V=1
}
package() {