1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: =?utf-8?q?Picca_Fr=C3=A9d=C3=A9ric-Emmanuel?= <picca@debian.org>
Date: Wed, 17 Jul 2019 16:55:28 +0200
Subject: Fix install path for man pages
cmake/BornAgain/Directories.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/BornAgain/Directories.cmake b/cmake/BornAgain/Directories.cmake
index c0b8666..3883a90 100644
@@ -106,7 +106,7 @@ set(destination_include ${destination_root}${CMAKE_INSTALL_INCLUDEDIR}/${CMAKE_P
set(destination_share ${destination_root}${CMAKE_INSTALL_DATAROOTDIR}/${CMAKE_PROJECT_NAME})
set(destination_examples ${destination_share}/Examples)
set(destination_images ${destination_share}/Images)
-set(destination_man ${destination_root}${CMAKE_INSTALL_DATAROOTDIR}/man/man1)
+set(destination_man ${destination_root}share/man/man1/)
list(APPEND dstIds bin lib include share examples images man)
|