diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2016-10-02 09:30:19 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2016-10-02 09:30:19 +0000 |
commit | 767fb70ec754e0f2210010536a590e05aed7966b (patch) | |
tree | 12e63fd10ce6b8296d1cbf7e485ef52e5aac1b20 | |
parent | 84382f0214cdff1324af7b849919167df43689c4 (diff) |
Explicitly set owner and group of the mouse(4) manpage symlink.
Needed for noperm release.
ok matthieu
-rw-r--r-- | driver/xf86-input-mouse/Makefile.bsd-wrapper | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/driver/xf86-input-mouse/Makefile.bsd-wrapper b/driver/xf86-input-mouse/Makefile.bsd-wrapper index 74931373e..acb4098a7 100644 --- a/driver/xf86-input-mouse/Makefile.bsd-wrapper +++ b/driver/xf86-input-mouse/Makefile.bsd-wrapper @@ -1,6 +1,7 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.3 2007/07/04 12:52:46 ajacoutot Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.4 2016/10/02 09:30:18 tb Exp $ afterinstall: - cd ${DESTDIR}${X11BASE}/man/man4 ; ln -sf mousedrv.4 mouse.4 + cd ${DESTDIR}${X11BASE}/man/man4 ; ln -sf mousedrv.4 mouse.4 ; \ + chown -h ${MANOWN}:${MANGRP} mouse.4 .include <bsd.xorg.mk> |