diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:17:34 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:17:34 +0000 |
commit | 4cd6eeda7442d1013be2f8e69c4c74cfd9a90685 (patch) | |
tree | 1bce499ec12ef04fee2b666ec3be13a27b89ea1f | |
parent | d79843dad3431c20bc9ea87c80d98fc37304115b (diff) | |
download | aports-4cd6eeda7442d1013be2f8e69c4c74cfd9a90685.tar.bz2 aports-4cd6eeda7442d1013be2f8e69c4c74cfd9a90685.tar.xz |
main/apr-util: remove *.la
-rw-r--r-- | main/apr-util/APKBUILD | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/main/apr-util/APKBUILD b/main/apr-util/APKBUILD index 84a983d9b2..3945b43ceb 100644 --- a/main/apr-util/APKBUILD +++ b/main/apr-util/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=apr-util pkgver=1.3.12 -pkgrel=0 +pkgrel=1 pkgdesc="The Apache Portable Runtime Utility Library" url="http://apr.apache.org/" arch="all" @@ -33,10 +33,10 @@ build() { package() { cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir" install - - # we dont need this one - rm "$pkgdir"/usr/lib/*.exp + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/apr-util*/*.la \ + "$pkgdir"/usr/lib/*.exp \ + "$pkgdir"/usr/lib/*.la || return 1 } _mv_mod() { |