Skip to content

Commit

Permalink
Fix Systemd unit install location
Browse files Browse the repository at this point in the history
The Systemd unit file should be installed relative to the install
prefix, not at an absolute path.
  • Loading branch information
theMarix committed Mar 19, 2024
1 parent 4b8557f commit bc30bd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ if(ENABLE_DAEMON)
DESTINATION "${CMAKE_INSTALL_MANDIR}/man1"
)
install(FILES "${CMAKE_SOURCE_DIR}/contrib/init/gridcoinresearchd.service"
DESTINATION /lib/systemd/system
DESTINATION "lib/systemd/system"
)
endif()
endif()
Expand Down

0 comments on commit bc30bd8

Please sign in to comment.