diff options
author | Max Rees <maxcrees@me.com> | 2018-03-28 16:29:34 -0400 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2018-03-28 22:54:30 +0200 |
commit | f0bd1660733f9d0935ed167245b73bfd5bb3217f (patch) | |
tree | 4eb444333b8ba395ff98bb84cf91d9f264e5c83e /main/fuse | |
parent | a85d9b7182d4d859ec92693f12e354cf7fb070a4 (diff) | |
download | aports-f0bd1660733f9d0935ed167245b73bfd5bb3217f.tar.bz2 aports-f0bd1660733f9d0935ed167245b73bfd5bb3217f.tar.xz |
main/fuse: Move /etc/udev/rules.d to /lib
See: https://github.com/alpinelinux/aports/pull/3759#issuecomment-376883202
Diffstat (limited to 'main/fuse')
-rw-r--r-- | main/fuse/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/fuse/APKBUILD b/main/fuse/APKBUILD index 064b73384f..7543ec4fcd 100644 --- a/main/fuse/APKBUILD +++ b/main/fuse/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=fuse pkgver=2.9.7 -pkgrel=0 +pkgrel=1 pkgdesc="A library that makes it possible to implement a filesystem in a userspace program." url="https://github.com/libfuse/" arch="all" @@ -18,7 +18,7 @@ builddir="$srcdir"/$pkgname-$pkgver build() { cd "$builddir" - ./configure \ + UDEV_RULES_PATH='/lib/udev/rules.d' ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ |