diff options
author | DRC <dcommander@users.sourceforge.net> | 2011-06-25 07:32:34 +0000 |
---|---|---|
committer | DRC <dcommander@users.sourceforge.net> | 2011-06-25 07:32:34 +0000 |
commit | 5b6aee2dbf63b15224061640c6ac0f8d3aa5f263 (patch) | |
tree | 6f0df8bb7f0fb889772bcfd76c7147bebce1f00e /unix | |
parent | e66060d1c3d2c67f096c1c34533f351fa7505e70 (diff) | |
download | tigervnc-5b6aee2dbf63b15224061640c6ac0f8d3aa5f263.tar.gz tigervnc-5b6aee2dbf63b15224061640c6ac0f8d3aa5f263.zip |
Rename man pages to .1 when installing
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4553 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'unix')
-rw-r--r-- | unix/CMakeLists.txt | 2 | ||||
-rw-r--r-- | unix/vncconfig/CMakeLists.txt | 2 | ||||
-rw-r--r-- | unix/vncpasswd/CMakeLists.txt | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/unix/CMakeLists.txt b/unix/CMakeLists.txt index 36fe3396..7a2fc85a 100644 --- a/unix/CMakeLists.txt +++ b/unix/CMakeLists.txt @@ -8,4 +8,4 @@ add_subdirectory(vncviewer) endif() install(PROGRAMS vncserver DESTINATION bin) -install(FILES vncserver.man DESTINATION man/man1) +install(FILES vncserver.man DESTINATION man/man1 RENAME vncserver.1) diff --git a/unix/vncconfig/CMakeLists.txt b/unix/vncconfig/CMakeLists.txt index 9adadaa2..1f674790 100644 --- a/unix/vncconfig/CMakeLists.txt +++ b/unix/vncconfig/CMakeLists.txt @@ -12,4 +12,4 @@ add_executable(vncconfig target_link_libraries(vncconfig tx rfb network rdr ${X11_LIBRARIES}) install(TARGETS vncconfig DESTINATION bin) -install(FILES vncconfig.man DESTINATION man/man1) +install(FILES vncconfig.man DESTINATION man/man1 RENAME vncconfig.1) diff --git a/unix/vncpasswd/CMakeLists.txt b/unix/vncpasswd/CMakeLists.txt index f31c936a..77640caa 100644 --- a/unix/vncpasswd/CMakeLists.txt +++ b/unix/vncpasswd/CMakeLists.txt @@ -6,4 +6,4 @@ add_executable(vncpasswd target_link_libraries(vncpasswd tx rfb rdr os) install(TARGETS vncpasswd DESTINATION bin) -install(FILES vncpasswd.man DESTINATION man/man1) +install(FILES vncpasswd.man DESTINATION man/man1 RENAME vncpasswd.1) |