summaryrefslogtreecommitdiff
path: root/indra/llwebrtc
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-07-31 19:29:02 +0800
committerErik Kundiman <erik@megapahit.org>2026-07-31 19:29:02 +0800
commit7e47eff5042c2fb897c8eee1219889a84ca3bf36 (patch)
tree2527d29a965dd54463f4d82834c86906996db22d /indra/llwebrtc
parentf94ad55c430f1b898e74871233703b12e48b8fce (diff)
Compare LINUX_DISTRO with freedesktop on Flatpak
so no need for USE_FLATPAK, and just maybe there are some other platforms that use this runtime as the distro info.
Diffstat (limited to 'indra/llwebrtc')
-rw-r--r--indra/llwebrtc/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llwebrtc/CMakeLists.txt b/indra/llwebrtc/CMakeLists.txt
index 6fb4616087..ff505f498a 100644
--- a/indra/llwebrtc/CMakeLists.txt
+++ b/indra/llwebrtc/CMakeLists.txt
@@ -84,7 +84,7 @@ endif (LL_TESTS)
if (INSTALL)
if (DARWIN)
set(_LIB ../Frameworks)
- elseif (USE_FLATPAK)
+ elseif (${LINUX_DISTRO} MATCHES freedesktop)
set(_LIB lib)
elseif (${LINUX_DISTRO} MATCHES debian OR (${LINUX_DISTRO} MATCHES ubuntu))
set(_LIB lib/${ARCH}-linux-gnu/${VIEWER_BINARY_NAME})