diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-25 15:38:38 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-25 15:38:38 +0200 |
commit | f2e3038180a57b58735c7adea1e65d208b83a47d (patch) | |
tree | 7b0b2046de68d676ac96eb8280ecac9e59b0d15e /community | |
parent | c9c95c143671e443a8f59ddc71d587c35546ccf8 (diff) | |
download | aports-f2e3038180a57b58735c7adea1e65d208b83a47d.tar.bz2 aports-f2e3038180a57b58735c7adea1e65d208b83a47d.tar.xz |
community/accountsservice: force libdir
meson will apparently set libdir to $prefix/lib64 if that directory
exists and is not a symlink. We always want $prefix/lib.
https://github.com/mesonbuild/meson/issues/2557
Diffstat (limited to 'community')
-rw-r--r-- | community/accountsservice/APKBUILD | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/community/accountsservice/APKBUILD b/community/accountsservice/APKBUILD index 8fcb50b11a..5a9474968f 100644 --- a/community/accountsservice/APKBUILD +++ b/community/accountsservice/APKBUILD @@ -25,6 +25,7 @@ source="https://www.freedesktop.org/software/accountsservice/accountsservice-$pk build() { meson \ --prefix=/usr \ + -Dlibdir=lib \ -Dsystemdsystemunitdir=no \ -Dsystemd=false \ -Delogind=true \ |