mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
core/linux-raspberrypi4 to 5.10.63-14
Hacky fix for build where chmod ends in exit code 1
This commit is contained in:
parent
3a28adcf6b
commit
65cfc14559
1 changed files with 4 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue