diff options
author | Alexander Grund <Flamefire@users.noreply.github.com> | 2020-04-19 14:06:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-04-20 12:27:31 (GMT) |
commit | 56b3375f3e80146a94a645f32cf78c65197c4481 (patch) | |
tree | 02521755412eafbec474b5a7ca4bf95bf8fed2c9 /Utilities/Scripts | |
parent | bd580b7d568493a795a855c0710ba4ad88532485 (diff) | |
download | CMake-56b3375f3e80146a94a645f32cf78c65197c4481.zip CMake-56b3375f3e80146a94a645f32cf78c65197c4481.tar.gz CMake-56b3375f3e80146a94a645f32cf78c65197c4481.tar.bz2 |
BoostScanDeps: Fix typo in numpy handling
Fix a typo from commit e66e8e8914 (BoostScanDeps: Special case python
and numpy and variants, 2017-08-22, v3.10.0-rc1~229^2~1).
Diffstat (limited to 'Utilities/Scripts')
-rw-r--r-- | Utilities/Scripts/BoostScanDeps.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utilities/Scripts/BoostScanDeps.cmake b/Utilities/Scripts/BoostScanDeps.cmake index 28a94ce..9e6d358 100644 --- a/Utilities/Scripts/BoostScanDeps.cmake +++ b/Utilities/Scripts/BoostScanDeps.cmake @@ -134,7 +134,7 @@ function(_Boost_FIND_COMPONENT_DEPENDENCIES component includedir _ret_libs) continue() endif() if(component STREQUAL "python" AND - boost_component_match STREQUAL "numpy") + _boost_component_match STREQUAL "numpy") # Optional python dependency; skip to avoid making it a # hard dependency (handle as special-case for numpy). continue() |