diff options
author | Brad King <brad.king@kitware.com> | 2021-07-23 13:41:08 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-07-23 13:41:32 (GMT) |
commit | e2202b7f5ac9c250810e9e7268ab46a81c38b2c7 (patch) | |
tree | b6ac33840efa6e6e5f53a14678cf29fcfd911059 /Modules | |
parent | 96b6585430953f4c5243510f6ac453b1605ccd55 (diff) | |
parent | 39a18aad07fed4bc62b0fe7fc5b151631722d466 (diff) | |
download | CMake-e2202b7f5ac9c250810e9e7268ab46a81c38b2c7.zip CMake-e2202b7f5ac9c250810e9e7268ab46a81c38b2c7.tar.gz CMake-e2202b7f5ac9c250810e9e7268ab46a81c38b2c7.tar.bz2 |
Merge topic 'FindPatch-typo'
39a18aad07 FindPatch: Fix typo in find_program call
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6373
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/FindPatch.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindPatch.cmake b/Modules/FindPatch.cmake index 4108651..f4fe4a6 100644 --- a/Modules/FindPatch.cmake +++ b/Modules/FindPatch.cmake @@ -43,7 +43,7 @@ endif() # First search the PATH find_program(Patch_EXECUTABLE - NAME patch + NAMES patch PATHS ${_patch_path} DOC ${_doc} ) |