Skip to content

Commit

Permalink
Fix reversed test for MISSING_FEATURES+=inet6.
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnylam88 committed Sep 8, 2007
1 parent bc88c9e commit d1db5ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mk/features/features-vars.mk
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# $NetBSD: features-vars.mk,v 1.3 2007/09/08 05:03:52 jlam Exp $
# $NetBSD: features-vars.mk,v 1.4 2007/09/08 05:04:37 jlam Exp $
#
# This file is include by bsd.prefs.mk.
#
Expand All @@ -25,7 +25,7 @@ MISSING_FEATURES= # empty
# regardless of whether or not "inet6" is a requested feature
# in USE_FEATURES.
#
.if defined(_OPSYS_HAS_INET6) && empty(_OPSYS_HAS_INET6:M[nN][oO])
.if defined(_OPSYS_HAS_INET6) && !empty(_OPSYS_HAS_INET6:M[nN][oO])
MISSING_FEATURES+= inet6
.endif

Expand Down

0 comments on commit d1db5ca

Please sign in to comment.