diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2014-05-20 16:36:34 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2014-05-20 16:36:34 (GMT) |
commit | 956b7190878b353d7c38f3446069fe323d790de3 (patch) | |
tree | 29f2c7c402ec8ee1e7101e6518675b334f9d5309 /Modules/Platform | |
parent | 2d5e3d2d2bfd79311c40db173d13f6d0cfb10019 (diff) | |
download | CMake-956b7190878b353d7c38f3446069fe323d790de3.zip CMake-956b7190878b353d7c38f3446069fe323d790de3.tar.gz CMake-956b7190878b353d7c38f3446069fe323d790de3.tar.bz2 |
OpenBSD: disable FIND_LIBRARY_USE_LIB64_PATHS
OpenBSD has no multilib paths.
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/OpenBSD.cmake | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/Platform/OpenBSD.cmake b/Modules/Platform/OpenBSD.cmake index a4f6114..023f055 100644 --- a/Modules/Platform/OpenBSD.cmake +++ b/Modules/Platform/OpenBSD.cmake @@ -17,6 +17,9 @@ endif() set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_OPENBSD_VERSIONING 1) +# OpenBSD has no multilib +set_property(GLOBAL PROPERTY FIND_LIBRARY_USE_LIB64_PATHS FALSE) + # OpenBSD policy requires that shared libraries be installed without # executable permission. set(CMAKE_INSTALL_SO_NO_EXE 1) |