Sun Jan 18 20:22:45 2009 UTC ()
Fix bogus conditional caught by today's make. It looks as if MKHIDEGAME
has never worked since it was introduced in 2002... clearly a lot of
people care about that.

It should work now, but because it's evidently never been tested it
may also require setlist adjustments.


(dholland)
diff -r1.13 -r1.14 src/games/Makefile.inc

cvs diff -r1.13 -r1.14 src/games/Makefile.inc (expand / switch to unified diff)

--- src/games/Makefile.inc 2008/01/28 07:03:58 1.13
+++ src/games/Makefile.inc 2009/01/18 20:22:45 1.14
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1# $NetBSD: Makefile.inc,v 1.13 2008/01/28 07:03:58 dholland Exp $ 1# $NetBSD: Makefile.inc,v 1.14 2009/01/18 20:22:45 dholland Exp $
2# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93 2# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
3 3
4MKHIDEGAME?= no 4MKHIDEGAME?= no
5 5
6.if defined(HIDEGAME) && (MKHIDEGAME!=no) && defined(PROG) 6.if defined(HIDEGAME) && (${MKHIDEGAME} != no) && defined(PROG)
7BINDIR= /usr/games/hide 7BINDIR= /usr/games/hide
8BINGRP= games 8BINGRP= games
9.if defined(SETGIDGAME) 9.if defined(SETGIDGAME)
10USE_FORT?= yes 10USE_FORT?= yes
11BINMODE= 2550 11BINMODE= 2550
12.else 12.else
13BINMODE= 550 13BINMODE= 550
14.endif 14.endif
15SYMLINKS+= dm /usr/games/${PROG} 15SYMLINKS+= dm /usr/games/${PROG}
16.else 16.else
17BINDIR= /usr/games 17BINDIR= /usr/games
18.if defined(SETGIDGAME) 18.if defined(SETGIDGAME)
19BINGRP= games 19BINGRP= games