Skip to content

Commit bc30bd8

Browse files
committed
Fix Systemd unit install location
The Systemd unit file should be installed relative to the install prefix, not at an absolute path.
1 parent 4b8557f commit bc30bd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ if(ENABLE_DAEMON)
269269
DESTINATION "${CMAKE_INSTALL_MANDIR}/man1"
270270
)
271271
install(FILES "${CMAKE_SOURCE_DIR}/contrib/init/gridcoinresearchd.service"
272-
DESTINATION /lib/systemd/system
272+
DESTINATION "lib/systemd/system"
273273
)
274274
endif()
275275
endif()

0 commit comments

Comments
 (0)