diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-24 03:10:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-11-24 03:10:11 +0000 |
commit | 38c3b9b6692021b2d5cdbc12a4c6792c3e8192a2 (patch) | |
tree | 1aeb9ce5e3bcb88c85c16fef4a0dc9d5cc233fa9 /games/sail | |
parent | cd1796ef95440c3b155f3bb473c00a2d03170090 (diff) |
In 1995, all of the games were setuid games. At end of 1996, I took them all
to setgid games, and we started wittling them down. Nearly 10 years later I
am removing all setgid from the games. If any of these have score files they
are now broken, and I hope various folk repair them. I have argued for years
(and received pushback...) that the score file features must be removed, or
rewritten to use private files, because setgid is the wrong tool.
ok tedu
Diffstat (limited to 'games/sail')
-rw-r--r-- | games/sail/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/sail/Makefile b/games/sail/Makefile index dfdf9d2279d..aeaca286a6e 100644 --- a/games/sail/Makefile +++ b/games/sail/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 2002/05/31 03:46:35 pjanzen Exp $ +# $OpenBSD: Makefile,v 1.7 2015/11/24 03:10:10 deraadt Exp $ PROG= sail SRCS= main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \ @@ -7,6 +7,5 @@ SRCS= main.c pl_main.c pl_1.c pl_2.c pl_3.c pl_4.c pl_5.c pl_6.c pl_7.c \ MAN= sail.6 DPADD= ${LIBCURSES} LDADD= -lcurses -BINMODE=2555 .include <bsd.prog.mk> |