Skip to content

Commit

Permalink
build: fix install path for flux-ion-R(1)
Browse files Browse the repository at this point in the history
Problem: The cmake-based build installs flux-ion-R.py to
<libexecdir>/cmd/ instead of <libexecdir>/flux/cmd.

Fix the path for FLUX_CMD_DIR so that this program is installed to
the correct path.

Fixes flux-framework#1083
  • Loading branch information
grondo committed Sep 28, 2023
1 parent 0b76610 commit 4719df2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ find_package(Boost 1.50 REQUIRED COMPONENTS
message(STATUS "Boost version: ${Boost_VERSION}")

# Install paths
set(FLUX_CMD_DIR "${CMAKE_INSTALL_PREFIX}/libexec/cmd")
set(FLUX_CMD_DIR "${CMAKE_INSTALL_PREFIX}/libexec/flux/cmd")
set(FLUX_LIB_DIR "${CMAKE_INSTALL_LIBDIR}/flux")
set(FLUX_MOD_DIR "${FLUX_LIB_DIR}/modules")
set(FLUX_SHELL_PLUGIN_DIR "${FLUX_LIB_DIR}/shell/plugins")
Expand Down

0 comments on commit 4719df2

Please sign in to comment.