diff options
author | Luis Ressel <aranea@aixah.de> | 2019-10-02 02:18:03 +0200 |
---|---|---|
committer | Luis Ressel <aranea@aixah.de> | 2019-10-02 02:18:03 +0200 |
commit | 47f3ae7765f23ba0f03397f0e38c4d0137fc69b4 (patch) | |
tree | cfc7483afb7d1bbe35b56357a479c5ada4ae9019 /system/sudo/APKBUILD | |
parent | 8a893694f6bfd848d5c53a0d743d9738e68f3a76 (diff) | |
download | packages-47f3ae7765f23ba0f03397f0e38c4d0137fc69b4.tar.gz packages-47f3ae7765f23ba0f03397f0e38c4d0137fc69b4.tar.bz2 packages-47f3ae7765f23ba0f03397f0e38c4d0137fc69b4.tar.xz packages-47f3ae7765f23ba0f03397f0e38c4d0137fc69b4.zip |
system/sudo: Compile insults in, but leave them off by default
Diffstat (limited to 'system/sudo/APKBUILD')
-rw-r--r-- | system/sudo/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/system/sudo/APKBUILD b/system/sudo/APKBUILD index 6b8685d86..2cb62343a 100644 --- a/system/sudo/APKBUILD +++ b/system/sudo/APKBUILD @@ -9,7 +9,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="https://www.sudo.ws/sudo/" arch="all" @@ -42,7 +42,9 @@ build() { --with-env-editor \ --with-pam \ --without-skey \ - --with-passprompt="[sudo] Password for %p: " + --with-passprompt="[sudo] Password for %p: " \ + --with-insults=disabled \ + --with-all-insults make } |