diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2000-08-17 06:56:12 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2000-08-17 06:56:12 +0000 |
commit | a4f6f2cd97897578fa9e3623276dae2a30266804 (patch) | |
tree | 4a0ea301cf01b7094ef1906831c551476df0a305 /games | |
parent | Make this setgid games to avoid a world-writable file (diff) |
Make this setgid games to avoid a world-writable file
Notes
Notes:
svn path=/head/; revision=31700
Diffstat (limited to 'games')
-rw-r--r-- | games/xemeraldia/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/games/xemeraldia/Makefile b/games/xemeraldia/Makefile index 8a1886e1da41..2c9503ba04a9 100644 --- a/games/xemeraldia/Makefile +++ b/games/xemeraldia/Makefile @@ -21,8 +21,11 @@ USE_IMAKE= yes NO_INSTALL_MANPAGES= yes post-install: + @${CHOWN} root:games ${PREFIX}/bin/xemeraldia + @${CHMOD} 2755 ${PREFIX}/bin/xemeraldia @${MKDIR} ${PREFIX}/lib/X11/xemeraldia @${TOUCH} ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores - @${CHMOD} 666 ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores + @${CHOWN} root:games ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores + @${CHMOD} 664 ${PREFIX}/lib/X11/xemeraldia/xemeraldia.scores .include <bsd.port.mk> |