diff options
author | Pierre Ossman <ossman@cendio.se> | 2019-02-01 13:24:20 +0100 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2020-03-12 12:03:52 +0100 |
commit | e4f253e1d1e1851bce3ea4a5511622696daf6d06 (patch) | |
tree | f1fee3aaf1feca1c040f2fc8fcf31a8310d023ba /unix/vncconfig | |
parent | 7694f9b4aae475a7b5985e0e960e21c5869f64cf (diff) | |
download | tigervnc-e4f253e1d1e1851bce3ea4a5511622696daf6d06.tar.gz tigervnc-e4f253e1d1e1851bce3ea4a5511622696daf6d06.zip |
Use standard install dir variable names
This makes our builds directly compatible with most distributions
without packagers/users having to specify extra flags.
Diffstat (limited to 'unix/vncconfig')
-rw-r--r-- | unix/vncconfig/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/vncconfig/CMakeLists.txt b/unix/vncconfig/CMakeLists.txt index 959681f6..c3823ab0 100644 --- a/unix/vncconfig/CMakeLists.txt +++ b/unix/vncconfig/CMakeLists.txt @@ -11,5 +11,5 @@ add_executable(vncconfig target_link_libraries(vncconfig tx rfb network rdr ${X11_LIBRARIES}) -install(TARGETS vncconfig DESTINATION ${BIN_DIR}) -install(FILES vncconfig.man DESTINATION ${MAN_DIR}/man1 RENAME vncconfig.1) +install(TARGETS vncconfig DESTINATION ${CMAKE_INSTALL_FULL_BINDIR}) +install(FILES vncconfig.man DESTINATION ${CMAKE_INSTALL_FULL_MANDIR}/man1 RENAME vncconfig.1) |