diff options
author | Johnny Jazeix <jazeix@gmail.com> | 2019-11-02 11:25:01 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-11-04 12:03:48 -0500 |
commit | 82ddcf0db1d220564145122c3cce25d25ee0e254 (patch) | |
tree | 5529d4876cae56fe6d868df3826b5c866e422a93 | |
parent | 60e7e5b60540dfbd1e67c415ee399e4aea59a369 (diff) | |
download | cmake-82ddcf0db1d220564145122c3cce25d25ee0e254.tar.gz |
MinGW Makefiles: do not fail if sh.exe is present in the path
The check was added only to fail early in an environment known not to work
at the time:
* https://web.archive.org/web/20120912010035/http://lists.trolltech.com/qt-interest/2006-01/thread00091-0.html
Fixes: #19327
-rw-r--r-- | Help/release/dev/mingw_no_sh.rst | 5 | ||||
-rw-r--r-- | Modules/CMakeMinGWFindMake.cmake | 7 |
2 files changed, 6 insertions, 6 deletions
diff --git a/Help/release/dev/mingw_no_sh.rst b/Help/release/dev/mingw_no_sh.rst new file mode 100644 index 0000000000..700886585b --- /dev/null +++ b/Help/release/dev/mingw_no_sh.rst @@ -0,0 +1,5 @@ +mingw-no-sh +----------- + +* The :generator:`MinGW Makefiles` generator no longer issues an error if + ``sh.exe`` is present in the environment's ``PATH``. diff --git a/Modules/CMakeMinGWFindMake.cmake b/Modules/CMakeMinGWFindMake.cmake index 523f00c3a3..f026e9aa7c 100644 --- a/Modules/CMakeMinGWFindMake.cmake +++ b/Modules/CMakeMinGWFindMake.cmake @@ -7,10 +7,5 @@ find_program(CMAKE_MAKE_PROGRAM mingw32-make.exe PATHS c:/MinGW/bin /MinGW/bin "[HKEY_CURRENT_USER\\Software\\CodeBlocks;Path]/MinGW/bin" ) -find_program(CMAKE_SH sh.exe ) -if(CMAKE_SH) - message(FATAL_ERROR "sh.exe was found in your PATH, here:\n${CMAKE_SH}\nFor MinGW make to work correctly sh.exe must NOT be in your path.\nRun cmake from a shell that does not have sh.exe in your PATH.\nIf you want to use a UNIX shell, then use MSYS Makefiles.\n") - set(CMAKE_MAKE_PROGRAM NOTFOUND) -endif() -mark_as_advanced(CMAKE_MAKE_PROGRAM CMAKE_SH) +mark_as_advanced(CMAKE_MAKE_PROGRAM) |