diff options
author | Sören Tempel <soeren+git@soeren-tempel.net> | 2015-11-09 11:10:24 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2015-11-10 07:54:15 +0000 |
commit | ad12bb855359c069498ee69eb1b5cb37683f25a9 (patch) | |
tree | 950c613f106f11fb1847deed53b9cf601e8c9271 /main/sudo/APKBUILD | |
parent | 550607e997eeea49954446bbcdcddab61f603850 (diff) | |
download | aports-ad12bb855359c069498ee69eb1b5cb37683f25a9.tar.bz2 aports-ad12bb855359c069498ee69eb1b5cb37683f25a9.tar.xz |
main/sudo: cleanup configure options
Don't use both --with-man and --with-mdoc since they both set different
mantypes. We only need --with-mdoc in order to use the mdoc mantype.
Furthermore explicitly enable PIE support and explicitly disable NLS
support.
Diffstat (limited to 'main/sudo/APKBUILD')
-rw-r--r-- | main/sudo/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/main/sudo/APKBUILD b/main/sudo/APKBUILD index c9850e42b1..b55f032930 100644 --- a/main/sudo/APKBUILD +++ b/main/sudo/APKBUILD @@ -1,3 +1,4 @@ +# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net> # Contributor: Łukasz Jendrysik <scadu@yandex.com> # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=sudo @@ -7,7 +8,7 @@ if [ "${pkgver%_*}" != "$pkgver" ]; then else _realver=$pkgver fi -pkgrel=0 +pkgrel=1 pkgdesc="Give certain users the ability to run some commands as root" url="http://www.sudo.ws/sudo/" arch="all" @@ -40,8 +41,9 @@ build() { --prefix=/usr \ --libexecdir=/usr/lib \ --mandir=/usr/share/man \ + --disable-nls \ + --enable-pie \ --with-env-editor \ - --with-man \ --with-mdoc \ --without-pam \ --without-skey \ |