summaryrefslogtreecommitdiff
path: root/Modules/FindBZip2.cmake
diff options
context:
space:
mode:
authorAlex Neundorf <neundorf@kde.org>2010-09-28 22:30:31 +0200
committerAlex Neundorf <neundorf@kde.org>2010-09-28 22:30:31 +0200
commitb01184022be821adc3fee277365d4f7bb6244ff2 (patch)
tree4ec9c1c5a335355f543190f51cf8f17156136767 /Modules/FindBZip2.cmake
parent41e4f1a2109cc03008ef0d1db5cab1c9345866e3 (diff)
downloadcmake-b01184022be821adc3fee277365d4f7bb6244ff2.tar.gz
Use absolute path to FindPackageHandleStandardArgs.cmake everywhere
This is to avoid getting an (older) copy of FPHSA.cmake which is e.g. installed with KDE 4.5.0 and 4.5.1. Alex
Diffstat (limited to 'Modules/FindBZip2.cmake')
-rw-r--r--Modules/FindBZip2.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindBZip2.cmake b/Modules/FindBZip2.cmake
index e671f93b9f..0ef87fafa2 100644
--- a/Modules/FindBZip2.cmake
+++ b/Modules/FindBZip2.cmake
@@ -26,7 +26,7 @@ FIND_LIBRARY(BZIP2_LIBRARIES NAMES bz2 bzip2 )
# handle the QUIETLY and REQUIRED arguments and set BZip2_FOUND to TRUE if
# all listed variables are TRUE
-INCLUDE(FindPackageHandleStandardArgs)
+INCLUDE("${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake")
FIND_PACKAGE_HANDLE_STANDARD_ARGS(BZip2 DEFAULT_MSG BZIP2_LIBRARIES BZIP2_INCLUDE_DIR)
IF (BZIP2_FOUND)