diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-30 09:28:56 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-06-30 09:28:56 +0000 |
commit | 3cfdc33fb064fcadbfeab0968299ef2022a71032 (patch) | |
tree | 18d5c77a1c5fdd4acdb35ed2cd2a265446af86d2 /main | |
parent | beaf2d01e2d53e648025b9bba7305df6ce5dbcbc (diff) | |
download | aports-3cfdc33fb064fcadbfeab0968299ef2022a71032.tar.bz2 aports-3cfdc33fb064fcadbfeab0968299ef2022a71032.tar.xz |
main/polkit: remove all *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/polkit/APKBUILD | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/polkit/APKBUILD b/main/polkit/APKBUILD index cfc380bb02..79bd394df5 100644 --- a/main/polkit/APKBUILD +++ b/main/polkit/APKBUILD @@ -3,7 +3,7 @@ pkgname=polkit _pkgname=PolicyKit pkgver=0.101 -pkgrel=1 +pkgrel=2 pkgdesc="Application development toolkit for controlling system-wide privileges" url="http://www.freedesktop.org/wiki/Software/PolicyKit" arch="all" @@ -44,8 +44,9 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install - rm "$pkgdir"/usr/lib/*.la + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la \ + "$pkgdir"/usr/lib/polkit*/extensions/*.la } md5sums="dcacd0c68fc62d0199bd39e437ab4baf PolicyKit-0.101.tar.bz2" |