diff options
author | obache <obache@pkgsrc.org> | 2010-05-03 05:52:59 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-05-03 05:52:59 +0000 |
commit | 4a7468d7ccf6f4f7c5cfd3d1c45df1a565ea30fe (patch) | |
tree | 1622ef25f275450a32f297413456fba8eb0a4b8f /mk | |
parent | 71709b1f22f9d2fc57f5322143cda3d819a2aec8 (diff) | |
download | pkgsrc-4a7468d7ccf6f4f7c5cfd3d1c45df1a565ea30fe.tar.gz |
Replace __noexistent__ with __nonexistent__ to avoid possibilty of another confusion.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/buildlink3/find-files.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/buildlink3/find-files.mk b/mk/buildlink3/find-files.mk index 0398e9ebc1e..f79b4a53dc1 100644 --- a/mk/buildlink3/find-files.mk +++ b/mk/buildlink3/find-files.mk @@ -1,4 +1,4 @@ -# $NetBSD: find-files.mk,v 1.5 2010/05/02 23:59:29 obache Exp $ +# $NetBSD: find-files.mk,v 1.6 2010/05/03 05:52:59 obache Exp $ # # Copyright (c) 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -84,18 +84,18 @@ USE_TOOLS+= grep ${_var_}= __nonexistent__ . for _file_ in ${BUILTIN_FIND_FILES.${_var_}} . if !empty(${_var_}:M__nonexistent__) -_real_file_= __noexistent__ +_real_file_= __nonexistent__ . if exists(${_file_}) _real_file_= ${_file_} . endif -. if !empty(_real_file_:M__noexistent__) && defined(BEINCLUDES) && !empty(BEINCLUDES) +. if !empty(_real_file_:M__nonexistent__) && defined(BEINCLUDES) && !empty(BEINCLUDES) . for _try_file_ in ${BEINCLUDES:S/;/ /g:=${_file_:S/\/usr\/include\//\//g}} -. if !empty(_real_file_:M__noexistent__) && exists(${_try_file_}) +. if !empty(_real_file_:M__nonexistent__) && exists(${_try_file_}) _real_file_= ${_try_file_} . endif . endfor . endif -. if empty(_real_file_:M__noexistent__) +. if empty(_real_file_:M__nonexistent__) . if !defined(BUILTIN_FIND_GREP.${_var_}) ${_var_}:= ${_real_file_} . else |