mirror of
https://github.com/shadow-maint/shadow.git
synced 2024-11-23 18:14:07 +08:00
d73f480ddc
Reviewed-by: Iker Pedrosa <ipedrosa@redhat.com> Signed-off-by: Alejandro Colomar <alx@kernel.org>
18 lines
337 B
Bash
Executable File
18 lines
337 B
Bash
Executable File
#! /bin/sh
|
|
|
|
autoreconf -v -f --install "$(dirname "$0")" || exit 1
|
|
|
|
CFLAGS="-O2"
|
|
CFLAGS="$CFLAGS -Wall"
|
|
CFLAGS="$CFLAGS -Werror=implicit-function-declaration"
|
|
|
|
"$(dirname "$0")"/configure \
|
|
CFLAGS="$CFLAGS" \
|
|
--enable-lastlog \
|
|
--enable-man \
|
|
--enable-maintainer-mode \
|
|
--enable-shared \
|
|
--without-libpam \
|
|
--with-selinux \
|
|
"$@"
|