1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Debian-specific changes to the cmake build system
Author: Christoph Biedl <debian.axhn@manchmal.in-ulm.de>
Forwarded: not-needed
Last-Update: 2018-11-25
--- a/comsat/CMakeLists.txt
+++ b/comsat/CMakeLists.txt
@@ -11,10 +11,11 @@
install(
FILES comsat.8
DESTINATION ${MAN_DIR}/man8/
+ RENAME in.comsat.8
)
INSTALL(
CODE "execute_process( \
COMMAND ${CMAKE_COMMAND} -E create_symlink \
- comsat.8 \$ENV{DESTDIR}${MAN_DIR}/man8/in.comsat.8 \
+ in.comsat.8 \$ENV{DESTDIR}${MAN_DIR}/man8/comsat.8 \
)"
)
|