2
0
mirror of https://codeberg.org/kiss-community/repo synced 2025-04-02 11:07:20 -06:00

sudo: disable pam

This commit is contained in:
Dylan Araps 2019-09-08 18:50:23 +03:00
parent 3ef285b743
commit c139bc2e5a

View File

@ -3,13 +3,14 @@
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--disable-nls \ --disable-nls \
--with-ignore-dot \ --disable-pam-session \
--with-insults=disabled \
--with-all-insults \
--without-sendmail \
--with-logfac=auth \
--disable-root-mailer \ --disable-root-mailer \
--enable-pie \ --enable-pie \
--without-pam \
--without-sendmail \
--with-ignore-dot \
--with-insults=disabled \
--with-logfac=auth \
--with-passprompt="[sudo] password for %p: " --with-passprompt="[sudo] password for %p: "
make make
@ -17,7 +18,7 @@ make \
DESTDIR="$1" \ DESTDIR="$1" \
install_uid="$(id -u)" \ install_uid="$(id -u)" \
install_gid="$(id -g)" \ install_gid="$(id -g)" \
install install
# Remove docs. # Remove docs.
rm -rf "$1/usr/share/doc" rm -rf "$1/usr/share/doc"