[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Add "makefile.mak" to list of default makefiles
From: |
Jonny Grant |
Subject: |
Re: Add "makefile.mak" to list of default makefiles |
Date: |
Tue, 8 Jul 2014 13:55:40 +0100 |
On 8 July 2014 03:38, Eli Zaretskii <address@hidden> wrote:
>> From: Paul Smith <address@hidden>
>> Cc: Eli Zaretskii <address@hidden>, address@hidden
>> Date: Mon, 07 Jul 2014 17:00:03 -0400
>>
>> I do wonder, though, why we have both "makefile" and "Makefile" above.
>> Does that actually ever do anything on Windows, other than waste a bit
>> of time checking for the same file twice?
>
> No.
Ok, updated patch:
--- read.c 2013-10-09 06:22:42.000000000 +0100
+++ read.c.new 2014-07-07 18:10:43.914952000 +0100
@@ -246,7 +246,11 @@
#ifdef _AMIGA
{ "GNUmakefile", "Makefile", "SMakefile", 0 };
#else /* !Amiga && !VMS */
+#ifdef WINDOWS32
+ { "GNUmakefile", "makefile", "makefile.mak", 0 };
+#else
{ "GNUmakefile", "makefile", "Makefile", 0 };
+#endif
#endif /* AMIGA */
#endif /* VMS */
register char **p = default_makefiles;
Also renaming README.W32 -> README_W32.txt
Regards, Jon