Re: [PATCH] Makefile.in: Make for loop failures fatal

2020-06-29 Thread Chet Ramey
On 6/27/20 4:10 PM, Jessica Clarke wrote: > Without set -e, these for loops will exit with code 0 and so make will > regard the recipes as being successful. If the last command in the body exits with status 0, yes. I'm going to do this a different way that doesn't use `set -e'. Chet -- ``The ly

[PATCH] Makefile.in: Make for loop failures fatal

2020-06-27 Thread Jessica Clarke
Without set -e, these for loops will exit with code 0 and so make will regard the recipes as being successful. --- Makefile.in | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile.in b/Makefile.in index ee471583..a12ed426 100644 --- a/Makefile.in +++ b/Makefile.i