diff options
-rw-r--r-- | mk/platform/Linux.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mk/platform/Linux.mk b/mk/platform/Linux.mk index ff639bf31f4..dc496560235 100644 --- a/mk/platform/Linux.mk +++ b/mk/platform/Linux.mk @@ -1,4 +1,4 @@ -# $NetBSD: Linux.mk,v 1.77 2017/10/03 13:18:00 jperkin Exp $ +# $NetBSD: Linux.mk,v 1.78 2017/11/21 19:16:47 bsiegert Exp $ # # Variable definitions for the Linux operating system. @@ -83,6 +83,11 @@ _OPSYS_LIB_DIRS?= /lib${LIBABISUFFIX} /usr/lib${LIBABISUFFIX} .endif _OPSYS_INCLUDE_DIRS?= /usr/include +.if !empty(OS_VARIANT:Mchromeos) +_OPSYS_LIB_DIRS+= /usr/local/lib +_OPSYS_INCLUDE_DIRS+= /usr/local/include +.endif + # These are libc builtins _OPSYS_PREFER.getopt?= native _OPSYS_PREFER.gettext?= native |