From a0f981451509bf83af153038d35079c4e62dc1cf Mon Sep 17 00:00:00 2001 From: Olaf Hering Date: Mon, 25 Mar 2019 17:00:10 +0100 Subject: [PATCH] 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 --- config/Paths.mk.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.30.2