From: Olaf Hering Date: Mon, 25 Mar 2019 16:00:10 +0000 (+0100) Subject: install pkgconfig files into libdir X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2263 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=a0f981451509bf83af153038d35079c4e62dc1cf;p=xen.git install pkgconfig files into libdir Most pkgconfig files contain a Libs: variable, which is either /usr/lib or /usr/lib64. If a 32bit and a 64bit variant of xen libraries is installed, the last one wins. As a result compiling for the other bitsize will fail. Instead of sharedir use libdir as install target. This matches both the documentation and the expected result. Signed-off-by: Olaf Hering Acked-by: Wei Liu --- diff --git a/config/Paths.mk.in b/config/Paths.mk.in index 8a518d5a5d..dc9d0c0353 100644 --- a/config/Paths.mk.in +++ b/config/Paths.mk.in @@ -58,4 +58,4 @@ XENFIRMWAREDIR := @XENFIRMWAREDIR@ XEN_CONFIG_DIR := @XEN_CONFIG_DIR@ XEN_SCRIPT_DIR := @XEN_SCRIPT_DIR@ -PKG_INSTALLDIR := ${SHAREDIR}/pkgconfig +PKG_INSTALLDIR := ${libdir}/pkgconfig