aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2011-06-25 07:32:34 +0000
committerDRC <dcommander@users.sourceforge.net>2011-06-25 07:32:34 +0000
commit5b6aee2dbf63b15224061640c6ac0f8d3aa5f263 (patch)
tree6f0df8bb7f0fb889772bcfd76c7147bebce1f00e
parente66060d1c3d2c67f096c1c34533f351fa7505e70 (diff)
downloadtigervnc-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
-rw-r--r--unix/CMakeLists.txt2
-rw-r--r--unix/vncconfig/CMakeLists.txt2
-rw-r--r--unix/vncpasswd/CMakeLists.txt2
-rw-r--r--vncviewer/CMakeLists.txt2
4 files changed, 4 insertions, 4 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)
diff --git a/vncviewer/CMakeLists.txt b/vncviewer/CMakeLists.txt
index 3fb1145c..ec899633 100644
--- a/vncviewer/CMakeLists.txt
+++ b/vncviewer/CMakeLists.txt
@@ -35,5 +35,5 @@ target_link_libraries(vncviewer rfb network rdr os Xregion ${FLTK_LIBRARIES} ${G
install(TARGETS vncviewer DESTINATION bin)
if(UNIX)
- install(FILES vncviewer.man DESTINATION man/man1)
+ install(FILES vncviewer.man DESTINATION man/man1 RENAME vncviewer.1)
endif()