diff options
author | jlam <jlam@pkgsrc.org> | 2006-03-30 18:06:17 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-03-30 18:06:17 +0000 |
commit | d71a98aa8eb185cc8c26f46f2502a25cb3135389 (patch) | |
tree | a4e8c404ab7153a9727f5d7f913a25bdd6b97971 /archivers | |
parent | 3987a638118f7f4cad35ee461afa830350d86564 (diff) | |
download | pkgsrc-d71a98aa8eb185cc8c26f46f2502a25cb3135389.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 'archivers')
-rw-r--r-- | archivers/bzip2/builtin.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archivers/bzip2/builtin.mk b/archivers/bzip2/builtin.mk index f9ecc3c43ae..8c76957760f 100644 --- a/archivers/bzip2/builtin.mk +++ b/archivers/bzip2/builtin.mk @@ -1,4 +1,4 @@ -# $NetBSD: builtin.mk,v 1.4 2005/06/27 18:17:57 minskim Exp $ +# $NetBSD: builtin.mk,v 1.5 2006/03/30 18:06:17 jlam Exp $ BUILTIN_PKG:= bzip2 @@ -14,7 +14,7 @@ BUILTIN_FIND_GREP.H_BZIP2= BZ2_ ### .if !defined(IS_BUILTIN.bzip2) IS_BUILTIN.bzip2= no -. if empty(H_BZIP2:M${LOCALBASE}/*) && exists(${H_BZIP2}) +. if empty(H_BZIP2:M__nonexistent__) && empty(H_BZIP2:M${LOCALBASE}/*) IS_BUILTIN.bzip2= yes . endif .endif |