projects
/
platform
/
upstream
/
make.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
241787d
)
Fix regression with "makefile" not being found on MS-Windows.
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 30 Aug 2014 07:40:12 +0000
(10:40 +0300)
committer
Eli Zaretskii
<eliz@gnu.org>
Sat, 30 Aug 2014 07:40:12 +0000
(10:40 +0300)
* read.c (read_all_makefiles) [WINDOWS32]: Recognize "makefile",
all-lowercase, as a makefile. Reported by Michael Waeber
<waeber@gmail.com>.
read.c
patch
|
blob
|
history
diff --git
a/read.c
b/read.c
index 6ac66f4f96c11438bb3a5e059a21ada7450862ca..bbb6e2a4f3fd6aff65bc22ad0deffbf440200b4e 100644
(file)
--- a/
read.c
+++ b/
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 */