Re: FREAD_READS_DIRECTORIES test fails for the wrong reasons

2018-04-06 Thread Jonathan Primrose
On 04/06/2018 03:33 PM, Jeff King wrote: On Fri, Apr 06, 2018 at 02:06:50PM -0400, Jonathan Primrose wrote: A while ago, the configure test for FREAD_READS_DIRECTORIES was changed to (attempt to) check for a NULL result from fopen. Unfortunately, the test will always fail - because it won&#

FREAD_READS_DIRECTORIES test fails for the wrong reasons

2018-04-06 Thread Jonathan Primrose
A while ago, the configure test for FREAD_READS_DIRECTORIES was changed to (attempt to) check for a NULL result from fopen. Unfortunately, the test will always fail - because it won't compile. The code snippet in configure.ac translates to: return f); Either there's an extra ) or a missing (. A