From 6dec5e606461b9a09edbc83da9fdb002727006cd Mon Sep 17 00:00:00 2001 From: Fabio Napoleoni Date: Sun, 14 Feb 2016 01:04:53 +0100 Subject: [PATCH] Libdir should point to /lib As in [linux-pam](https://github.com/alpinelinux/aports/blob/master/main/linux-pam/APKBUILD#L52) package libdir should be `/lib` otherwise pam module is installed in the wrong folder. --- testing/google-authenticator/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/testing/google-authenticator/APKBUILD b/testing/google-authenticator/APKBUILD index 4d99c2977353..712a57d5880a 100644 --- a/testing/google-authenticator/APKBUILD +++ b/testing/google-authenticator/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=google-authenticator pkgver=20160207 -pkgrel=0 +pkgrel=1 pkgdesc="Google Authenticator PAM module" url="https://github.com/google/google-authenticator" arch="all" @@ -33,6 +33,7 @@ build() { --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ + --libdir=/lib \ --sysconfdir=/etc \ --mandir=/usr/share/man \ --infodir=/usr/share/info \