diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-07 18:37:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-05-07 18:49:26 +0000 |
commit | 6fa0a06af1f02063a573fd791dc8e7ec5bfbc7af (patch) | |
tree | 437a716f594666805728aac4383a2532ca2d7cf6 /main/linux-grsec/APKBUILD | |
parent | c6586adc4c786eab63a137655ac9453bea8f2952 (diff) | |
download | aports-6fa0a06af1f02063a573fd791dc8e7ec5bfbc7af.tar.bz2 aports-6fa0a06af1f02063a573fd791dc8e7ec5bfbc7af.tar.xz |
main/linux-grsec: actually apply the last xfrm patchv1.10.3
was not applied previously
(cherry picked from commit 9f050562e98e9355710fa2aa173dae037793fb37)
Diffstat (limited to 'main/linux-grsec/APKBUILD')
-rw-r--r-- | main/linux-grsec/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/linux-grsec/APKBUILD b/main/linux-grsec/APKBUILD index a529ae86f..5228ecc02 100644 --- a/main/linux-grsec/APKBUILD +++ b/main/linux-grsec/APKBUILD @@ -4,7 +4,7 @@ _flavor=grsec pkgname=linux-${_flavor} pkgver=2.6.32.12 _kernver=2.6.32 -pkgrel=4 +pkgrel=5 pkgdesc="Linux kernel with grsecurity" url=http://grsecurity.net depends="mkinitfs linux-firmware" @@ -46,7 +46,8 @@ prepare() { fi # first apply the grsecurity patch and then the rest - for i in "$srcdir"/grsecurity*.patch "$srcdir"/0[0-9]*.patch; do + for i in "$srcdir"/grsecurity*.patch "$srcdir"/0[0-9]*.patch \ + "$srcdir"/xfrm*; do [ -f $i ] || continue msg "Applying $i..." patch -s -p1 -N < $i || return 1 |