build: fix man page build failure with some permissions setups
commitec02161aefab06bec919d10396900ce6fe87390d
authorEnrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
Sat, 6 Apr 2013 12:23:59 +0000 (6 14:23 +0200)
committerPádraig Brady <P@draigBrady.com>
Sun, 7 Apr 2013 10:53:17 +0000 (7 11:53 +0100)
treecf1310cd4e31d799e87c4cf96beb9dea30d8b0a0
parente92d16f68a97575ed7112204b069514edc8d54a0
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