diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-08 12:39:39 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-07-08 12:39:39 +0000 |
commit | ab9d1309c2f84913c236ccadbe97e5ff1dc42f73 (patch) | |
tree | 22afb565a60b85edc23fbc9ca5963f930b61a3d2 /main/coreutils | |
parent | 5b08ec94123d350e68b2779b9e48c0b349006650 (diff) | |
download | aports-ab9d1309c2f84913c236ccadbe97e5ff1dc42f73.tar.bz2 aports-ab9d1309c2f84913c236ccadbe97e5ff1dc42f73.tar.xz |
main/coreutils: dont install kill since its provided by procps
Diffstat (limited to 'main/coreutils')
-rw-r--r-- | main/coreutils/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/coreutils/APKBUILD b/main/coreutils/APKBUILD index 7ffc066670..445091bde3 100644 --- a/main/coreutils/APKBUILD +++ b/main/coreutils/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=coreutils pkgver=8.5 -pkgrel=0 +pkgrel=1 pkgdesc="The basic file, shell and text manipulation utilities" url="http://www.gnu.org/software/coreutils/" license="GPL" @@ -19,7 +19,9 @@ build() { --mandir=/usr/share/man \ --infodir=/usr/share/info \ --disable-nls \ - --without-gmp + --without-gmp \ + --enable-no-install-program=arch,hostname,su,kill,uptime \ + || return 1 make || return 1 } |