summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Iooss2021-04-30 22:28:02 +0200
committerNicolas Iooss2021-04-30 22:28:02 +0200
commitb156403746cf6d81e6737e8151faecaea7d0c627 (patch)
tree7458ed24096d684d1858bc6384ff599061960d69 /PKGBUILD
parente6ab861fe4fa8532def7d0e18f6c61d460b692e4 (diff)
downloadaur-b156403746cf6d81e6737e8151faecaea7d0c627.tar.gz
pam-selinux: fix provides definition
"provides" was defined twice in PKGBUILD, dues to SELinux modifications (in order for pam-selinux to "provide" pam). This this by merging the provides arrays.
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD4
1 files changed, 2 insertions, 2 deletions
diff --git a/PKGBUILD b/PKGBUILD
index e42ba3144b5d..279fc5e6003f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -16,9 +16,9 @@ license=('GPL2')
url="http://linux-pam.org"
depends=('glibc' 'libtirpc' 'audit' 'libselinux' 'pambase-selinux' 'libaudit.so' 'libxcrypt' 'libcrypt.so')
makedepends=('flex' 'w3m' 'docbook-xml>=4.4' 'docbook-xsl')
-provides=('libpam.so' 'libpamc.so' 'libpam_misc.so')
conflicts=("${pkgname/-selinux}" "selinux-${pkgname/-selinux}")
-provides=("${pkgname/-selinux}=${pkgver}-${pkgrel}"
+provides=('libpam.so' 'libpamc.so' 'libpam_misc.so'
+ "${pkgname/-selinux}=${pkgver}-${pkgrel}"
"selinux-${pkgname/-selinux}=${pkgver}-${pkgrel}")
backup=(etc/security/{access.conf,faillock.conf,group.conf,limits.conf,namespace.conf,namespace.init,pam_env.conf,time.conf} etc/environment)
groups=('selinux')