summaryrefslogtreecommitdiffstats
path: root/Modules/FindLibArchive.cmake
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2010-12-20 20:56:51 (GMT)
committerBrad King <brad.king@kitware.com>2011-01-04 13:20:08 (GMT)
commitce28737c933a749cbc84c601f3ac9f56e4c832aa (patch)
tree44bf07879719b60d9c846bbd18d49f299e9c5cae /Modules/FindLibArchive.cmake
parent7db8db5b7279a74aa4eab9cc1996a6a94131dc7e (diff)
downloadCMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.zip
CMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.tar.gz
CMake-ce28737c933a749cbc84c601f3ac9f56e4c832aa.tar.bz2
Remove usage of CMAKE_CURRENT_LIST_DIR now that we have CMP0017
This puts the new search behaviour for included files in action, i.e. now when a file from Modules/ include()s another file, it also gets the one from Modules/ included, i.e. the one it expects. Alex
Diffstat (limited to 'Modules/FindLibArchive.cmake')
-rw-r--r--Modules/FindLibArchive.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindLibArchive.cmake b/Modules/FindLibArchive.cmake
index 2104e70..e7c2706 100644
--- a/Modules/FindLibArchive.cmake
+++ b/Modules/FindLibArchive.cmake
@@ -50,7 +50,7 @@ endif()
# Handle the QUIETLY and REQUIRED arguments and set LIBARCHIVE_FOUND
# to TRUE if all listed variables are TRUE.
-include("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake")
+include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(LibArchive DEFAULT_MSG
LibArchive_LIBRARY LibArchive_INCLUDE_DIR
)