summaryrefslogtreecommitdiff
path: root/security/heimdal
diff options
context:
space:
mode:
authorjlam <jlam>2006-03-30 18:06:17 +0000
committerjlam <jlam>2006-03-30 18:06:17 +0000
commita35f9b4747edb8252e3b814ea5580fd22f62dc6b (patch)
treea4e8c404ab7153a9727f5d7f913a25bdd6b97971 /security/heimdal
parenta363c62fe6f0f041b9e87d700fa75aa44358a5d9 (diff)
downloadpkgsrc-a35f9b4747edb8252e3b814ea5580fd22f62dc6b.tar.gz
Avoid extra stat() calls by not repeatedly checking whether a file
exists on the disk -- we can just check whether a variable defined by find-files.mk is "__nonexistent__" or not.
Diffstat (limited to 'security/heimdal')
-rw-r--r--security/heimdal/builtin.mk9
1 files changed, 5 insertions, 4 deletions
diff --git a/security/heimdal/builtin.mk b/security/heimdal/builtin.mk
index 24256a0973d..e212ea11135 100644
--- a/security/heimdal/builtin.mk
+++ b/security/heimdal/builtin.mk
@@ -1,4 +1,4 @@
-# $NetBSD: builtin.mk,v 1.7 2006/01/26 22:46:15 markd Exp $
+# $NetBSD: builtin.mk,v 1.8 2006/03/30 18:06:18 jlam Exp $
BUILTIN_PKG:= heimdal
@@ -16,7 +16,7 @@ BUILTIN_FIND_GREP.SH_KRB5_CONFIG= ^[ ]*--version)
###
.if !defined(IS_BUILTIN.heimdal)
IS_BUILTIN.heimdal= no
-. if empty(H_HEIMDAL:M${LOCALBASE}/*) && exists(${H_HEIMDAL})
+. if empty(H_HEIMDAL:M__nonexistent__) && empty(H_HEIMDAL:M${LOCALBASE}/*)
IS_BUILTIN.heimdal= yes
. endif
.endif
@@ -28,7 +28,7 @@ MAKEVARS+= IS_BUILTIN.heimdal
###
.if !defined(BUILTIN_PKG.heimdal) && \
!empty(IS_BUILTIN.heimdal:M[yY][eE][sS])
-. if exists(${SH_KRB5_CONFIG})
+. if empty(SH_KRB5_CONFIG:M__nonexistent__)
BUILTIN_VERSION.heimdal!= ${SH_KRB5_CONFIG} --version | \
${AWK} '{ print $$2; exit }'
. else
@@ -104,7 +104,8 @@ CONFIGURE_ENV+= KRB5_CONFIG=${KRB5_CONFIG:Q}
MAKE_ENV+= KRB5_CONFIG=${KRB5_CONFIG:Q}
. endif
-. if !empty(USE_BUILTIN.heimdal:M[yY][eE][sS]) && !exists(${SH_KRB5_CONFIG})
+. if !empty(USE_BUILTIN.heimdal:M[yY][eE][sS]) && \
+ !empty(SH_KRB5_CONFIG:M__nonexistent__)
BUILDLINK_TARGETS+= fake-krb5-config
fake-krb5-config: