summaryrefslogtreecommitdiff
path: root/indra/llwebrtc
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-12-31 18:13:54 +0800
committerErik Kundiman <erik@megapahit.org>2024-12-31 18:18:17 +0800
commitfc3c0f48d92bf9c3dcad622b2b8e9340edc92c7c (patch)
treed913bcdc43062763f34160816ab8c5457caac3d2 /indra/llwebrtc
parent26974d238ce5ba5a3c22b8788b6754d5911c06c2 (diff)
Decide lib64 or x86_64-linux-gnu based on distro
Some builders might just have their installation somehow customised to have both.
Diffstat (limited to 'indra/llwebrtc')
-rw-r--r--indra/llwebrtc/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt
index 7700eeb7c6..1e9898e5cc 100644
--- a/indra/llwebrtc/CMakeLists.txt
+++ b/indra/llwebrtc/CMakeLists.txt
@@ -80,10 +80,10 @@ endif (LL_TESTS)
if (INSTALL)
if (DARWIN)
set(_LIB ../Frameworks)
- elseif (EXISTS ${CMAKE_SYSROOT}/usr/lib/${ARCH}-linux-gnu)
+ elseif (${LINUX_DISTRO} MATCHES debian OR (${LINUX_DISTRO} MATCHES ubuntu))
set(_LIB lib/${ARCH}-linux-gnu)
- elseif (EXISTS /lib64 AND NOT ${LINUX_DISTRO} MATCHES arch)
- set(_LIB lib64)
+ elseif (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed))
+ set(_LIB lib${ADDRESS_SIZE})
else (DARWIN)
set(_LIB lib)
endif (DARWIN)