summaryrefslogtreecommitdiff
path: root/indra/cmake/UnixInstall.cmake
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2026-06-23 20:02:41 +0800
committerErik Kundiman <erik@megapahit.org>2026-06-23 20:02:41 +0800
commit0f5b40798a6c122b7104d6bafefcb7decaad2fc3 (patch)
treee8c08cd613129c8e3696053b3173aff188e929dd /indra/cmake/UnixInstall.cmake
parent3f27cd9a683360843524a42628faa6310e196645 (diff)
Not use address size suffix for Flatpak library dirHEADmain
so upstream dullahan_host's rpath, which is meant to have $ORIGIN/../lib, would correctly refer to the library dir (where libcef.so is), without having to manipulate dullahan_host (cause Flatpak SDK doesn't have patchelf). But Dullahan/CEF is still not working on Flatpak just yet (LibVLC does, now, after I changed the prebuilt package from Debian 13 binaries to Fedora 44 binaries, where libvlccore links to libidn with the same compatibility version.
Diffstat (limited to 'indra/cmake/UnixInstall.cmake')
-rw-r--r--indra/cmake/UnixInstall.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/UnixInstall.cmake b/indra/cmake/UnixInstall.cmake
index 65170b5744..34c3ed0ec9 100644
--- a/indra/cmake/UnixInstall.cmake
+++ b/indra/cmake/UnixInstall.cmake
@@ -15,7 +15,7 @@ if (INSTALL)
endif ()
if (USE_FLATPAK)
- set(_LIB lib${ADDRESS_SIZE})
+ set(_LIB lib)
elseif (${LINUX_DISTRO} MATCHES debian OR (${LINUX_DISTRO} MATCHES ubuntu))
set(_LIB lib/${ARCH}-linux-gnu/${VIEWER_BINARY_NAME})
elseif (${LINUX_DISTRO} MATCHES fedora OR (${LINUX_DISTRO} MATCHES opensuse-tumbleweed) OR (${LINUX_DISTRO} MATCHES gentoo))