]> git.ipfire.org Git - thirdparty/shadow.git/commitdiff
buildsys: fix suidubins assignments 43/head
authorWolfgang Bumiller <wry.git@bumiller.com>
Sat, 5 Nov 2016 14:51:13 +0000 (15:51 +0100)
committerWolfgang Bumiller <wry.git@bumiller.com>
Sat, 5 Nov 2016 15:09:07 +0000 (16:09 +0100)
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 <wry.git@bumiller.com>
Reported-by: Rahel A <ra00177@surrey.ac.uk>
src/Makefile.am

index 08d8225d907a633ed011410527c9ad2012cb21e6..b2678d6cecffb01e609d329f55b2dd22f22a0062 100644 (file)
@@ -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