We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f62c0 commit 150a817Copy full SHA for 150a817
1 file changed
grive/CMakeLists.txt
@@ -26,4 +26,9 @@ set_target_properties( grive_executable
26
)
27
28
install(TARGETS grive_executable RUNTIME DESTINATION bin)
29
-install(FILES doc/grive.1 DESTINATION share/man/man1 )
+
30
+if ( ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD" )
31
+ install(FILES doc/grive.1 DESTINATION man/man1 )
32
+else ( ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD" )
33
+ install(FILES doc/grive.1 DESTINATION share/man/man1 )
34
+endif( ${CMAKE_SYSTEM_NAME} MATCHES "OpenBSD" )
0 commit comments