diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-12-01 18:53:58 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-12-01 18:53:58 +0800 |
commit | e561067b7fa381474a08dcd3dbd88fd9ca9f3936 (patch) | |
tree | 78040764a19687b4bb2101fe805e32b3e1001382 /indra/llplugin | |
parent | 999783f3344729e4ccbd46846118eef964537a75 (diff) |
Move libexec binaries to /usr/lib/megapahit on Arch
as in Arch, there's really no /usr/libexec.
Diffstat (limited to 'indra/llplugin')
-rw-r--r-- | indra/llplugin/slplugin/CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llplugin/slplugin/CMakeLists.txt b/indra/llplugin/slplugin/CMakeLists.txt index 3ad6d10336..d29731894f 100644 --- a/indra/llplugin/slplugin/CMakeLists.txt +++ b/indra/llplugin/slplugin/CMakeLists.txt @@ -68,6 +68,8 @@ endif () if (INSTALL) if (DARWIN) install(TARGETS ${PROJECT_NAME} DESTINATION .) + elseif (${LINUX_DISTRO} MATCHES arch) + install(TARGETS ${PROJECT_NAME} DESTINATION lib/${VIEWER_BINARY_NAME}) else (DARWIN) install(TARGETS ${PROJECT_NAME} DESTINATION libexec/${VIEWER_BINARY_NAME}) endif (DARWIN) |