From ec02161aefab06bec919d10396900ce6fe87390d Mon Sep 17 00:00:00 2001 From: Enrico Scholz Date: Sat, 6 Apr 2013 14:23:59 +0200 Subject: build: fix man page build failure with some permissions setups Use the more portable 'chmod a-w', instead of the 'chmod -w' form. The latter is not always supported. Also its operation is dependent on umask controlling the permissions bits for new files, which is not the case in the presence of POSIX default ACLs for e.g. In that case, chmod may print a warning like the following, and exit with failure status: chmod: man/hostid.1-t: new permissions are r--rw-r--, not r--r--r-- * man/local.mk: s/-w/a-w/ --- man/local.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'man') diff --git a/man/local.mk b/man/local.mk index b5e6e21da..53debad46 100644 --- a/man/local.mk +++ b/man/local.mk @@ -192,5 +192,5 @@ man/yes.1: src/yes --output=$$t/$$name.1 $$t/$$name \ && sed 's|$*\.td/||g' $$t/$$name.1 > $@-t \ && rm -rf $$t \ - && chmod -w $@-t \ + && chmod a-w $@-t \ && mv $@-t $@ -- cgit v1.2.3-54-g00ecf