summaryrefslogtreecommitdiffstats
path: root/Modules/FindEXPAT.cmake
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2007-11-25 13:20:05 (GMT)
committerAlexander Neundorf <neundorf@kde.org>2007-11-25 13:20:05 (GMT)
commitbdc1e4e054a9dfb48b49f6a485b93e3266f4e2cc (patch)
tree5fd065d1c80ca58379ab1ad78f894126572eb6d1 /Modules/FindEXPAT.cmake
parentfc86a05455ff60f8a1f78431423c7cabe14caf63 (diff)
downloadCMake-bdc1e4e054a9dfb48b49f6a485b93e3266f4e2cc.zip
CMake-bdc1e4e054a9dfb48b49f6a485b93e3266f4e2cc.tar.gz
CMake-bdc1e4e054a9dfb48b49f6a485b93e3266f4e2cc.tar.bz2
BUG: use the correct variable for checking the success (#6062)
Alex
Diffstat (limited to 'Modules/FindEXPAT.cmake')
-rw-r--r--Modules/FindEXPAT.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindEXPAT.cmake b/Modules/FindEXPAT.cmake
index 69c2200..ee5b2fa 100644
--- a/Modules/FindEXPAT.cmake
+++ b/Modules/FindEXPAT.cmake
@@ -14,7 +14,7 @@ FIND_LIBRARY(EXPAT_LIBRARY NAMES expat)
# handle the QUIETLY and REQUIRED arguments and set EXPAT_FOUND to TRUE if
# all listed variables are TRUE
INCLUDE(FindPackageHandleStandardArgs)
-FIND_PACKAGE_HANDLE_STANDARD_ARGS(EXPAT DEFAULT_MSG EXPAT_LIBRARY EXPAT_INCLUDE_PATH)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(EXPAT DEFAULT_MSG EXPAT_LIBRARY EXPAT_INCLUDE_DIR)
# Copy the results to the output variables.
IF(EXPAT_FOUND)