diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 12:36:08 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2011-07-01 12:36:08 +0000 |
commit | 2cc375b0df2f06b3bb7bc9180c15e162fade4fb0 (patch) | |
tree | 6e0a5879a6f70aab8485eb727ca2a2a90940c5da /testing | |
parent | d9a229a1d7d77b2609b4cf99ccf0a4f0c42aee82 (diff) | |
download | aports-2cc375b0df2f06b3bb7bc9180c15e162fade4fb0.tar.bz2 aports-2cc375b0df2f06b3bb7bc9180c15e162fade4fb0.tar.xz |
testing/inotify-tools: remove *.la
Diffstat (limited to 'testing')
-rw-r--r-- | testing/inotify-tools/APKBUILD | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testing/inotify-tools/APKBUILD b/testing/inotify-tools/APKBUILD index a664b55d0..82bb0baab 100644 --- a/testing/inotify-tools/APKBUILD +++ b/testing/inotify-tools/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Leonardo Arena <rnalrd@gmail.com> pkgname="inotify-tools" pkgver=3.14 -pkgrel=0 +pkgrel=1 pkgdesc="C library and CLI tools providing a simple interface to inotify" url="http://github.com/rvoicilas/inotify-tools" arch="all" @@ -32,7 +32,8 @@ build() { package() { cd "$_builddir" - make DESTDIR="$pkgdir" install + make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/*.la || return 1 } md5sums="b43d95a0fa8c45f8bab3aec9672cf30c inotify-tools-3.14.tar.gz" |