diff options
author | Rolf Eike Beer <eike@sf-mail.de> | 2012-11-03 20:35:44 (GMT) |
---|---|---|
committer | Rolf Eike Beer <eike@sf-mail.de> | 2012-11-04 04:55:37 (GMT) |
commit | 8ebf74b02fe936888f7b3af59dd983405bef9cf7 (patch) | |
tree | 2d71d53fd131166b94cc36ceafbf2ce13ff32aca /Modules/FindX11.cmake | |
parent | d39bd3e6a8dc89637197c305102724c337b7fb0f (diff) | |
download | CMake-8ebf74b02fe936888f7b3af59dd983405bef9cf7.zip CMake-8ebf74b02fe936888f7b3af59dd983405bef9cf7.tar.gz CMake-8ebf74b02fe936888f7b3af59dd983405bef9cf7.tar.bz2 |
Find* (and some other): use ${CMAKE_CURRENT_LIST_DIR} in include()
This solves a lots of warnings, e.g. in the FindModulesExecuteAll test. If the
installed version on the system is rather old this may even lead to bugs, e.g.
https://bugs.gentoo.org/show_bug.cgi?id=436540
Diffstat (limited to 'Modules/FindX11.cmake')
-rw-r--r-- | Modules/FindX11.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/FindX11.cmake b/Modules/FindX11.cmake index e12dc0a..3cd3cef 100644 --- a/Modules/FindX11.cmake +++ b/Modules/FindX11.cmake @@ -336,8 +336,8 @@ if (UNIX) endif () if(X11_FOUND) - include(CheckFunctionExists) - include(CheckLibraryExists) + include(${CMAKE_CURRENT_LIST_DIR}/CheckFunctionExists.cmake) + include(${CMAKE_CURRENT_LIST_DIR}/CheckLibraryExists.cmake) # Translated from an autoconf-generated configure script. # See libs.m4 in autoconf's m4 directory. @@ -417,7 +417,7 @@ if (UNIX) # Build the final list of libraries. set(X11_LIBRARIES ${X11_X_PRE_LIBS} ${X11_LIBRARIES} ${X11_X_EXTRA_LIBS}) - include(FindPackageMessage) + include(${CMAKE_CURRENT_LIST_DIR}/FindPackageMessage.cmake) FIND_PACKAGE_MESSAGE(X11 "Found X11: ${X11_X11_LIB}" "[${X11_X11_LIB}][${X11_INCLUDE_DIR}]") else () |