1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Always pick the Linux-specific manpage sources
There are no specific manpages available for the Hurd (and formerly kFreeBSD).
Author: Sven Geuer <sge@debian.org>
Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=873530
Forwarded: not-needed
Last-Update: 2025-02-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -188,8 +188,7 @@
set(bindir "${CMAKE_INSTALL_PREFIX}/bin")
endif()
-string (TOLOWER "${CMAKE_SYSTEM_NAME}" SYSNAME)
-set (DIS_MAN ${PROJECT_SOURCE_DIR}/man/${SYSNAME})
+set (DIS_MAN ${PROJECT_SOURCE_DIR}/man/linux)
# RPATH handling
if(POLICY CMP0042)
|