diff options
author | obache <obache@pkgsrc.org> | 2013-11-23 09:10:14 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2013-11-23 09:10:14 +0000 |
commit | 118926210d2669efc979be7523bb8a8c4d9bdeac (patch) | |
tree | f47d0d9ef917ac947f89504f318923da729155e4 /mk/dlopen.builtin.mk | |
parent | f6cafd6051d2431f87b65eeb240fbb839f609c76 (diff) | |
download | pkgsrc-118926210d2669efc979be7523bb8a8c4d9bdeac.tar.gz |
Use find-headers instead of find-files to detect builtin header files.
Diffstat (limited to 'mk/dlopen.builtin.mk')
-rw-r--r-- | mk/dlopen.builtin.mk | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mk/dlopen.builtin.mk b/mk/dlopen.builtin.mk index ab1fb57fb79..660a477447a 100644 --- a/mk/dlopen.builtin.mk +++ b/mk/dlopen.builtin.mk @@ -1,12 +1,10 @@ -# $NetBSD: dlopen.builtin.mk,v 1.26 2013/11/01 11:58:48 jperkin Exp $ +# $NetBSD: dlopen.builtin.mk,v 1.27 2013/11/23 09:10:14 obache Exp $ BUILTIN_PKG:= dl BUILTIN_FIND_LIBS:= dl -BUILTIN_FIND_FILES_VAR:= H_DL -BUILTIN_FIND_FILES.H_DL= /usr/include/dlfcn.h \ - /opt/gcc.3.3/include/dlfcn.h \ - /boot/develop/headers/posix/dlfcn.h +BUILTIN_FIND_HEADERS_VAR:= H_DL +BUILTIN_FIND_HEADERS.H_DL= dlfcn.h .include "../../mk/buildlink3/bsd.builtin.mk" |