From f2e3038180a57b58735c7adea1e65d208b83a47d Mon Sep 17 00:00:00 2001
From: Natanael Copa <ncopa@alpinelinux.org>
Date: Sat, 25 May 2019 15:38:38 +0200
Subject: [PATCH] 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
---
 community/accountsservice/APKBUILD | 1 +
 1 file changed, 1 insertion(+)

diff --git a/community/accountsservice/APKBUILD b/community/accountsservice/APKBUILD
index 8fcb50b11a5a..5a9474968f57 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 \
-- 
GitLab