diff options
author | tnn <tnn@pkgsrc.org> | 2007-10-16 23:48:58 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2007-10-16 23:48:58 +0000 |
commit | 24d5b5440929de9526a6f56e677b8849f624fc21 (patch) | |
tree | b29811eb6b46cc5f60ca30ac6cd4ef5482fa68eb /mk | |
parent | 0d22d43b0025cb69d33a7dfeec038c71e05ef3e9 (diff) | |
download | pkgsrc-24d5b5440929de9526a6f56e677b8849f624fc21.tar.gz |
Fix abusers of LOWER_OPSYS to check OPSYS or MACHINE_PLATFORM instead.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/features/features-vars.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/features/features-vars.mk b/mk/features/features-vars.mk index fe459e212a0..0f6650e2fdd 100644 --- a/mk/features/features-vars.mk +++ b/mk/features/features-vars.mk @@ -1,4 +1,4 @@ -# $NetBSD: features-vars.mk,v 1.7 2007/10/01 11:47:00 rillig Exp $ +# $NetBSD: features-vars.mk,v 1.8 2007/10/16 23:49:01 tnn Exp $ # # This file is included by bsd.prefs.mk. # @@ -97,7 +97,7 @@ MISSING_FEATURES+= ${_feature_} .for _feature_ in snprintf vsnprintf . if defined(USE_FEATURES) && !empty(USE_FEATURES:M${_feature_}) -. if !empty(LOWER_OPSYS:Mirix5*) +. if ${OPSYS} == "IRIX" MISSING_FEATURES+= ${_feature_} . endif . endif |