[bug #51167] Pattern rule with no recipe fails

2017-06-02 Thread Paul D. Smith
Update of bug #51167 (project make): Status:None => Not A Bug Open/Closed:Open => Closed ___ Follow-up Comment #1: This is defined behavi

[bug #51167] Pattern rule with no recipe fails

2017-06-02 Thread anonymous
URL: Summary: Pattern rule with no recipe fails Project: make Submitted by: None Submitted on: Fri 02 Jun 2017 09:48:43 PM UTC Severity: 3 - Normal Item Group: Bug

Re: Q: On Windows why not ignore CRLF?

2017-06-02 Thread Ray Donnelly
On Jun 2, 2017 9:18 PM, "Eli Zaretskii" wrote: > From: Paul Smith > Cc: bug-make@gnu.org > Date: Fri, 02 Jun 2017 15:56:51 -0400 > > FYI, I don't know how "good" this is for testing requirements but on my > Windows systems I've installed Git for Windows (along with Perl of > course) and that pro

Re: Q: On Windows why not ignore CRLF?

2017-06-02 Thread Eli Zaretskii
> From: Paul Smith > Cc: bug-make@gnu.org > Date: Fri, 02 Jun 2017 15:56:51 -0400 > > FYI, I don't know how "good" this is for testing requirements but on my > Windows systems I've installed Git for Windows (along with Perl of > course) and that provides a number of UNIX commands which is why I >

Re: Q: On Windows why not ignore CRLF?

2017-06-02 Thread Paul Smith
On Thu, 2017-06-01 at 17:41 +0300, Eli Zaretskii wrote: > > I'm not sure about this implementation (performance-wise) but > > leaving > > that aside, I don't understand why this code is ifdef'd out on > > Windows.  > > Well, it's your code, or so it seems ;-)  And it was always ifdef'ed > away on

[bug #51159] pselect jobserver stuck at read does not reap children

2017-06-02 Thread Paul D. Smith
Follow-up Comment #2, bug #51159 (project make): This does look like a promising diagnosis. I'll look at it this weekend. ___ Reply to this item at: ___

[bug #51159] pselect jobserver stuck at read does not reap children

2017-06-02 Thread Martin Dorey
Follow-up Comment #1, bug #51159 (project make): Is this part of: bug #49014: Zombies in parallel builds with pselect code But with the key missing ingredient - a diagnosis - and a fix? ___ Reply to this item at:

Re: Q: On Windows why not ignore CRLF?

2017-06-02 Thread thutt
Edward Welbourne writes: > The remaining question is whether it's *possible* for a text-mode > file handle on MS to still have a '\r' just before its '\n' in a > line, presumably due to a CRCRLF mess in the raw file. Yes, it most certainly is possible. Translation only occurs on '\r\n'.

[bug #51159] pselect jobserver stuck at read does not reap children

2017-06-02 Thread Koen Van Hoof
URL: Summary: pselect jobserver stuck at read does not reap children Project: make Submitted by: kvho Submitted on: Fri 02 Jun 2017 12:44:13 PM CEST Severity: 3 - Normal

Re: Q: On Windows why not ignore CRLF?

2017-06-02 Thread Edward Welbourne
Paul Smith (31 May 2017 19:48:57 -0400) >> > #if !defined(WINDOWS32) && !defined(__MSDOS__) && !defined(__EMX__) >> > /* Check to see if the line was really ended with CRLF; if so >> > ignore >> >the CR. */ >> > if ((p - start) > 1 && p[-2] == '\r') >> > {