diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2020-02-26 07:12:15 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-02-26 04:12:55 -0300 |
commit | f7cb45b68f19aa7f5a4d0a5ca34cfe037a8443f8 (patch) | |
tree | d016068e91a19753c5877cc901685d7a83e1df77 | |
parent | a0c67732462eb2718a76ebcc0708aa309f7486cc (diff) | |
download | aports-f7cb45b68f19aa7f5a4d0a5ca34cfe037a8443f8.tar.gz aports-f7cb45b68f19aa7f5a4d0a5ca34cfe037a8443f8.tar.bz2 aports-f7cb45b68f19aa7f5a4d0a5ca34cfe037a8443f8.tar.xz |
main/zfs: fix paths in /etc/zfs/zfs{,-functions}
Upstream accidentally included pre-configured files in their tarball so make didn't
rebuild them with our parameters.
See https://github.com/tonyhutter/zfs/commit/2cc089a95faffa5dd1e0deffca3cf8e06eab41b5
Ref https://github.com/zfsonlinux/zfs/issues/9443
ref #11209
closes #11195
-rw-r--r-- | main/zfs/APKBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/zfs/APKBUILD b/main/zfs/APKBUILD index 504ba8e4dc..63bd38750f 100644 --- a/main/zfs/APKBUILD +++ b/main/zfs/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=zfs pkgver=0.8.3 -pkgrel=0 +pkgrel=1 pkgdesc="ZFS for Linux" url="http://zfsonlinux.org" arch="all !armhf !armv7" @@ -19,6 +19,9 @@ source="https://github.com/zfsonlinux/zfs/releases/download/zfs-$pkgver/zfs-$pkg prepare() { default_prepare autoreconf -vif + + # Upstream forgot to remove tainted files from the tarball... + rm etc/init.d/zfs etc/init.d/zfs-functions } build() { |