From: Matias A. Fonzo Date: Tue, 18 Oct 2016 18:46:27 +0000 (-0300) Subject: Remove non-POSIX option in chmod(1) used for src/Makefile.am X-Git-Tag: 4.5~37^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F41%2Fhead;p=thirdparty%2Fshadow.git Remove non-POSIX option in chmod(1) used for src/Makefile.am --- diff --git a/src/Makefile.am b/src/Makefile.am index dc520b5d9..08d8225d9 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -125,14 +125,14 @@ install-am: all-am ln -sf newgrp $(DESTDIR)$(ubindir)/sg ln -sf vipw $(DESTDIR)$(usbindir)/vigr for i in $(suidbins); do \ - chmod -f $(suidperms) $(DESTDIR)$(bindir)/$$i; \ + chmod $(suidperms) $(DESTDIR)$(bindir)/$$i; \ done for i in $(suidubins); do \ - chmod -f $(suidperms) $(DESTDIR)$(ubindir)/$$i; \ + chmod $(suidperms) $(DESTDIR)$(ubindir)/$$i; \ done if WITH_TCB for i in $(shadowsgidubins); do \ chown root:shadow $(DESTDIR)$(ubindir)/$$i; \ - chmod -f $(sgidperms) $(DESTDIR)$(ubindir)/$$i; \ + chmod $(sgidperms) $(DESTDIR)$(ubindir)/$$i; \ done endif