diff options
author | Fabio Napoleoni <f.napoleoni@gmail.com> | 2016-02-14 01:04:53 +0100 |
---|---|---|
committer | Leonardo Arena <rnalrd@alpinelinux.org> | 2016-02-15 14:02:23 +0000 |
commit | 24684747f588033d6a7ea41a366e0ff6871ce00e (patch) | |
tree | b5a7288cd323578fd0fb307b10e4a3cb739dad70 /testing | |
parent | f77b6cf7f01c2e3110fadb824c336adc6e5c0414 (diff) | |
download | aports-24684747f588033d6a7ea41a366e0ff6871ce00e.tar.bz2 aports-24684747f588033d6a7ea41a366e0ff6871ce00e.tar.xz |
testing/googleauthenticator: Libdir should point to /lib. Fixes #5113
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.
Signed-off-by: Leonardo Arena <rnalrd@alpinelinux.org>
Diffstat (limited to 'testing')
-rw-r--r-- | testing/google-authenticator/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testing/google-authenticator/APKBUILD b/testing/google-authenticator/APKBUILD index 4d99c29773..712a57d588 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 \ |