diff options
author | Brad King <brad.king@kitware.com> | 2021-12-01 14:41:42 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-12-01 14:42:13 (GMT) |
commit | dbf0c8c2331d680847ebfe197b6991ff1f718643 (patch) | |
tree | 14830c8bce74577e251687265c7ee16173e72253 /Modules/GNUInstallDirs.cmake | |
parent | faaf82175ca42566b335e936ed368a21e92d8731 (diff) | |
parent | c07bba27302960fc2f35b6a9e00eab8b32ca9a49 (diff) | |
download | CMake-dbf0c8c2331d680847ebfe197b6991ff1f718643.zip CMake-dbf0c8c2331d680847ebfe197b6991ff1f718643.tar.gz CMake-dbf0c8c2331d680847ebfe197b6991ff1f718643.tar.bz2 |
Merge topic 'GNUInstallDirs-freebsd-mandir'
c07bba2730 GNUInstallDirs: Update CMAKE_INSTALL_MANDIR for FreeBSD
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6722
Diffstat (limited to 'Modules/GNUInstallDirs.cmake')
-rw-r--r-- | Modules/GNUInstallDirs.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/GNUInstallDirs.cmake b/Modules/GNUInstallDirs.cmake index 6268325..4e7f87b 100644 --- a/Modules/GNUInstallDirs.cmake +++ b/Modules/GNUInstallDirs.cmake @@ -332,7 +332,7 @@ else() "Info documentation (DATAROOTDIR/info)") endif() -if(CMAKE_SYSTEM_NAME MATCHES "^(([^k].*)?BSD|DragonFly)$") +if(CMAKE_SYSTEM_NAME MATCHES "^(([^k].*)?BSD|DragonFly)$" AND NOT CMAKE_SYSTEM_NAME MATCHES "^(FreeBSD)$") _GNUInstallDirs_cache_path_fallback(CMAKE_INSTALL_MANDIR "man" "Man documentation (man)") else() |