From: Roger Pau Monne Date: Mon, 2 Jul 2018 08:28:26 +0000 (+0200) Subject: build: fix include paths in FreeBSD X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3650 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=fe9b60476a548de1c62d6fc985e9741b04479d36;p=xen.git build: fix include paths in FreeBSD FreeBSD package manager uses /usr/local/ as the default install path, but that's not part of the compiler search path, so add it using the APPEND_{LIB/INCLUDES} variables. Signed-off-by: Roger Pau Monné Acked-by: Wei Liu --- diff --git a/config/FreeBSD.mk b/config/FreeBSD.mk index afeaefbde2..98a5117e60 100644 --- a/config/FreeBSD.mk +++ b/config/FreeBSD.mk @@ -3,3 +3,7 @@ include $(XEN_ROOT)/config/StdGNU.mk # No wget on FreeBSD base system WGET = ftp PKG_INSTALLDIR = ${prefix}/libdata/pkgconfig + +# Add the default pkg install path +APPEND_LIB += /usr/local/lib +APPEND_INCLUDES += /usr/local/include