diff options
author | Brad King <brad.king@kitware.com> | 2014-04-17 13:10:53 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-04-17 13:10:53 (GMT) |
commit | ef10fc47ae07a61ff560c88f768113ed157757f2 (patch) | |
tree | 4b49a0a70d7ff0d43a34cfa34dbb9dfb8622a6f2 /Modules/Platform | |
parent | 858ed4b390fd21ee1cc29bced6724d2eeb4476a6 (diff) | |
parent | cc57ff5c496e280d93a842909d2c739cfbb5ba93 (diff) | |
download | CMake-ef10fc47ae07a61ff560c88f768113ed157757f2.zip CMake-ef10fc47ae07a61ff560c88f768113ed157757f2.tar.gz CMake-ef10fc47ae07a61ff560c88f768113ed157757f2.tar.bz2 |
Merge topic 'implicit-libNN-dirs'
cc57ff5c Drop /lib32 and /lib64 from link directories and RPATH (#14875)
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/UnixPaths.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/UnixPaths.cmake b/Modules/Platform/UnixPaths.cmake index eca3280..20ee1d1 100644 --- a/Modules/Platform/UnixPaths.cmake +++ b/Modules/Platform/UnixPaths.cmake @@ -83,7 +83,7 @@ list(APPEND CMAKE_SYSTEM_PROGRAM_PATH ) list(APPEND CMAKE_PLATFORM_IMPLICIT_LINK_DIRECTORIES - /lib /usr/lib /usr/lib32 /usr/lib64 + /lib /lib32 /lib64 /usr/lib /usr/lib32 /usr/lib64 ) list(APPEND CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES |