From: Wolfgang Bumiller Date: Sat, 5 Nov 2016 14:51:13 +0000 (+0100) Subject: buildsys: fix suidubins assignments X-Git-Tag: 4.5~34^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F43%2Fhead;p=thirdparty%2Fshadow.git buildsys: fix suidubins assignments These assignments were pasted as is into the Makefile and ended up as part of a rule. (Usually the .PRECIOUS rule which is why the build system never attempted to execute it as commands, hiding the problem.) Signed-off-by: Wolfgang Bumiller Reported-by: Rahel A --- diff --git a/src/Makefile.am b/src/Makefile.am index 08d8225d9..b2678d6ce 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -54,10 +54,10 @@ noinst_PROGRAMS = id sulogin suidbins = su suidubins = chage chfn chsh expiry gpasswd newgrp passwd if ACCT_TOOLS_SETUID - suidubins += chage chgpasswd chpasswd groupadd groupdel groupmod newusers useradd userdel usermod +suidubins += chage chgpasswd chpasswd groupadd groupdel groupmod newusers useradd userdel usermod endif if ENABLE_SUBIDS - suidubins += newgidmap newuidmap +suidubins += newgidmap newuidmap endif if WITH_TCB