mirror of
https://github.com/shadow-maint/shadow.git
synced 2024-11-23 18:14:07 +08:00
8893c51480
This allows to do the following: ~/src/shadow/shadow/master$ mkdir .tmp/ && cd .tmp/ ~/src/shadow/shadow/master/.tmp$ ../autogen.sh Link: <https://github.com/shadow-maint/shadow/issues/795> Reviewed-by: Sam James <sam@gentoo.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
14 lines
247 B
Bash
Executable File
14 lines
247 B
Bash
Executable File
#! /bin/sh
|
|
|
|
autoreconf -v -f --install "$(dirname "$0")" || exit 1
|
|
|
|
"$(dirname "$0")"/configure \
|
|
CFLAGS="-O2 -Wall" \
|
|
--enable-lastlog \
|
|
--enable-man \
|
|
--enable-maintainer-mode \
|
|
--enable-shared \
|
|
--without-libpam \
|
|
--with-selinux \
|
|
"$@"
|