diff options
author | tv <tv@pkgsrc.org> | 2006-10-26 14:42:53 +0000 |
---|---|---|
committer | tv <tv@pkgsrc.org> | 2006-10-26 14:42:53 +0000 |
commit | d75fc11ff9c362597a6014cd0779d497049b50e3 (patch) | |
tree | 67159b455b7c8a398e911f95e381500286124e33 /mk | |
parent | 1a250040b28e2b330065763cfeef7a56f13e5746 (diff) | |
download | pkgsrc-d75fc11ff9c362597a6014cd0779d497049b50e3.tar.gz |
PKG_DEVELOPER is a defined check; it doesn't need to equal the string "yes".
Diffstat (limited to 'mk')
-rw-r--r-- | mk/configure/check-portability.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/configure/check-portability.mk b/mk/configure/check-portability.mk index 1679671f825..741ebc1b6ac 100644 --- a/mk/configure/check-portability.mk +++ b/mk/configure/check-portability.mk @@ -1,4 +1,4 @@ -# $NetBSD: check-portability.mk,v 1.7 2006/10/23 16:07:12 rillig Exp $ +# $NetBSD: check-portability.mk,v 1.8 2006/10/26 14:42:53 tv Exp $ # # This file contains some checks that are applied to the configure # scripts to check for certain constructs that are known to cause @@ -27,7 +27,7 @@ # Default value: empty. # -.if defined(PKG_DEVELOPER) && !empty(PKG_DEVELOPER:M[Yy][Ee][Ss]) +.if defined(PKG_DEVELOPER) CHECK_PORTABILITY?= yes .endif CHECK_PORTABILITY?= no |