core/linux-raspberrypi4 to 5.10.63-14

Hacky fix for build where chmod ends in exit code 1
This commit is contained in:
graysky 2021-09-29 03:28:42 -04:00
parent 3a28adcf6b
commit 65cfc14559

View file

@ -11,7 +11,7 @@ _srcname=linux-${_commit}
_kernelname=${pkgbase#linux} _kernelname=${pkgbase#linux}
_desc="Raspberry Pi 3/4/400" _desc="Raspberry Pi 3/4/400"
pkgver=5.10.63 pkgver=5.10.63
pkgrel=13 pkgrel=14
arch=('armv7h' 'aarch64') arch=('armv7h' 'aarch64')
url="http://www.kernel.org/" url="http://www.kernel.org/"
license=('GPL2') license=('GPL2')
@ -205,7 +205,9 @@ _package-headers() {
find -L "${_builddir}" -type l -printf 'Removing %P\n' -delete find -L "${_builddir}" -type l -printf 'Removing %P\n' -delete
# Fix permissions # Fix permissions
chmod -R u=rwX,go=rX "${_builddir}" if ! chmod -R u=rwX,go=rX "${_builddir}"; then
true
fi
# strip scripts directory # strip scripts directory
local _binary _strip local _binary _strip