From e63fdc86684e32e28b462bc989c04f42369a681e Mon Sep 17 00:00:00 2001 From: dm9pZCAq <6386705-dm9pZCAq@users.noreply.gitlab.com> Date: Wed, 20 Jan 2021 16:23:34 +0200 Subject: [PATCH] dev-libs/olm: fixed hardcoded libdir --- dev-libs/olm/olm-3.1.5-r1.ebuild | 2 +- dev-libs/olm/olm-3.2.1.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-libs/olm/olm-3.1.5-r1.ebuild b/dev-libs/olm/olm-3.1.5-r1.ebuild index 8456eac..6406fc8 100644 --- a/dev-libs/olm/olm-3.1.5-r1.ebuild +++ b/dev-libs/olm/olm-3.1.5-r1.ebuild @@ -41,7 +41,7 @@ src_prepare() { src_compile() { cmake_src_compile - export LIBRARY_PATH=""${S}"/lib64/" # Let python build find the already built libolm + export LIBRARY_PATH="${S}/$(get_libdir)/" # Let python build find the already built libolm use python && (cd python; distutils-r1_src_compile) } diff --git a/dev-libs/olm/olm-3.2.1.ebuild b/dev-libs/olm/olm-3.2.1.ebuild index 88d0584..d58a6d9 100644 --- a/dev-libs/olm/olm-3.2.1.ebuild +++ b/dev-libs/olm/olm-3.2.1.ebuild @@ -48,7 +48,7 @@ src_configure() { src_compile() { cmake_src_compile - export LIBRARY_PATH=""${S}"/lib64/" # Let python build find the already built libolm + export LIBRARY_PATH="${S}/$(get_libdir)/" # Let python build find the already built libolm use python && (cd python; distutils-r1_src_compile) }