c7981fdd00
Distributions use id(1) from GNU coreutils or BusyBox. Drop ours. Closes: <https://github.com/shadow-maint/shadow/issues/1005> Suggested-by: dkwo <nicolopiazzalunga@gmail.com> Cc: "Serge E. Hallyn" <serge@hallyn.com> Cc: Iker Pedrosa <ipedrosa@redhat.com> Cc: Michael Vetter <jubalh@iodoru.org> Cc: Sam James <sam@gentoo.org> Signed-off-by: Alejandro Colomar <alx@kernel.org>
32 lines
442 B
Makefile
32 lines
442 B
Makefile
|
|
mandir = @mandir@/da
|
|
|
|
# 2012.01.28 - activate manpages with more than 50% translated messages
|
|
man_MANS = \
|
|
man1/chfn.1 \
|
|
man8/groupdel.8 \
|
|
man1/groups.1 \
|
|
man5/gshadow.5 \
|
|
man8/logoutd.8 \
|
|
man1/newgrp.1 \
|
|
man8/nologin.8 \
|
|
man1/sg.1 \
|
|
man8/vigr.8 \
|
|
man8/vipw.8
|
|
|
|
man_nopam =
|
|
|
|
if !USE_PAM
|
|
man_MANS += $(man_nopam)
|
|
endif
|
|
|
|
EXTRA_DIST = \
|
|
$(man_MANS)
|
|
|
|
if USE_PAM
|
|
EXTRA_DIST += $(man_nopam)
|
|
endif
|
|
|
|
include ../generate_translations.mak
|
|
|