mirror of
https://github.com/shadow-maint/shadow.git
synced 2024-11-23 18:14:07 +08:00
c89b326350
Add "--enable-lastlog" to include lastlog man pages in tarball. Signed-off-by: Iker Pedrosa <ipedrosa@redhat.com>
14 lines
213 B
Bash
Executable File
14 lines
213 B
Bash
Executable File
#! /bin/sh
|
|
|
|
autoreconf -v -f --install || exit 1
|
|
|
|
./configure \
|
|
CFLAGS="-O2 -Wall" \
|
|
--enable-lastlog \
|
|
--enable-man \
|
|
--enable-maintainer-mode \
|
|
--enable-shared \
|
|
--without-libpam \
|
|
--with-selinux \
|
|
"$@"
|