diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:02:30 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 09:02:30 +0000 |
commit | 66e4f80145479099b44ceaa6b055d785fe064848 (patch) | |
tree | 47c03d632b6a43d23fcedfddac0b43ca1040f6d4 /main | |
parent | a382c390d476fa65c2ac432696e95318b763da0e (diff) | |
download | aports-66e4f80145479099b44ceaa6b055d785fe064848.tar.bz2 aports-66e4f80145479099b44ceaa6b055d785fe064848.tar.xz |
main/cmph: remove *.la
Diffstat (limited to 'main')
-rw-r--r-- | main/cmph/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/cmph/APKBUILD b/main/cmph/APKBUILD index a5be372f40..93a7887989 100644 --- a/main/cmph/APKBUILD +++ b/main/cmph/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: pkgname=cmph pkgver=0.9 -pkgrel=1 +pkgrel=2 pkgdesc="minimal perfect hash C library - utility application" url="http://cmph.sourceforge.net/" arch="all" @@ -29,7 +29,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } lib() { |