mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 04:35:44 +00:00
Fix regression with "makefile" not being found on MS-Windows.
* read.c (read_all_makefiles) [WINDOWS32]: Recognize "makefile", all-lowercase, as a makefile. Reported by Michael Waeber <waeber@gmail.com>.
This commit is contained in:
parent
241787d8e4
commit
ab1210b1fe
1 changed files with 1 additions and 1 deletions
2
read.c
2
read.c
|
@ -247,7 +247,7 @@ read_all_makefiles (const char **makefiles)
|
|||
{ "GNUmakefile", "Makefile", "SMakefile", 0 };
|
||||
#else /* !Amiga && !VMS */
|
||||
#ifdef WINDOWS32
|
||||
{ "GNUmakefile", "Makefile", "makefile.mak", 0 };
|
||||
{ "GNUmakefile", "Makefile", "makefile", "makefile.mak", 0 };
|
||||
#else /* !Amiga && !VMS && !WINDOWS32 */
|
||||
{ "GNUmakefile", "makefile", "Makefile", 0 };
|
||||
#endif /* !Amiga && !VMS && !WINDOWS32 */
|
||||
|
|
Loading…
Reference in a new issue