summaryrefslogtreecommitdiffstats
path: root/Makefile.inc
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2009-01-18 20:22:45 +0000
committerdholland <dholland@NetBSD.org>2009-01-18 20:22:45 +0000
commitdd096191dcfacdcbd63dabb28e4aeb1c79cfafae (patch)
tree6ae5b565a70c739da5c61c1c0d1800ba6939783d /Makefile.inc
parent507aaf965ef150e1a53b2f7093fc8a0a809cb1a1 (diff)
downloadbsdgames-darwin-dd096191dcfacdcbd63dabb28e4aeb1c79cfafae.tar.gz
bsdgames-darwin-dd096191dcfacdcbd63dabb28e4aeb1c79cfafae.tar.zst
bsdgames-darwin-dd096191dcfacdcbd63dabb28e4aeb1c79cfafae.zip
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.
Diffstat (limited to 'Makefile.inc')
-rw-r--r--Makefile.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc
index 9557593c..cdd7bc30 100644
--- a/Makefile.inc
+++ b/Makefile.inc
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.inc,v 1.13 2008/01/28 07:03:58 dholland Exp $
+# $NetBSD: Makefile.inc,v 1.14 2009/01/18 20:22:45 dholland Exp $
# @(#)Makefile.inc 8.1 (Berkeley) 5/31/93
MKHIDEGAME?= no
-.if defined(HIDEGAME) && (MKHIDEGAME!=no) && defined(PROG)
+.if defined(HIDEGAME) && (${MKHIDEGAME} != no) && defined(PROG)
BINDIR= /usr/games/hide
BINGRP= games
.if defined(SETGIDGAME)