Compare commits

...

2 Commits

Author SHA1 Message Date
XGQT
7f0448ab10 Merge branch 'master' into 'master'
dev-libs/olm: fix hardcoded libdir

See merge request src_prepare/src_prepare-overlay!149
2021-01-20 14:36:52 +00:00
dm9pZCAq
e63fdc8668
dev-libs/olm: fixed hardcoded libdir 2021-01-20 16:23:34 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ src_prepare() {
src_compile() { src_compile() {
cmake_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) use python && (cd python; distutils-r1_src_compile)
} }

View File

@ -48,7 +48,7 @@ src_configure() {
src_compile() { src_compile() {
cmake_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) use python && (cd python; distutils-r1_src_compile)
} }