summaryrefslogtreecommitdiff
path: root/indra/llplugin
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2024-12-01 18:53:58 +0800
committerErik Kundiman <erik@megapahit.org>2024-12-01 18:53:58 +0800
commite561067b7fa381474a08dcd3dbd88fd9ca9f3936 (patch)
tree78040764a19687b4bb2101fe805e32b3e1001382 /indra/llplugin
parent999783f3344729e4ccbd46846118eef964537a75 (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.txt2
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)