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:37:34 +0000 |
commit | 9f050562e98e9355710fa2aa173dae037793fb37 (patch) | |
tree | a6a820b11dfddafdd31fcc27969ed23acb1e40e9 /main | |
parent | 939d896172b9f6a456771e31c72a00db2221a3af (diff) | |
download | aports-9f050562e98e9355710fa2aa173dae037793fb37.tar.bz2 aports-9f050562e98e9355710fa2aa173dae037793fb37.tar.xz |
main/linux-grsec: actually apply the last xfrm patch
was not applied previously
Diffstat (limited to 'main')
-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 a529ae86fa..5228ecc02e 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 |