bug#68860: race condition with make recheck

2024-08-25 Thread Karl Berry
> - $output_rules .= "check-am: all-am\n"; > + $output_rules .= "check-am: all-am"; > if (@check) > { > - pretty_print_rule ("\t\$(MAKE) \$(AM_MAKEFLAGS)", "\t ", @check); > + $output_rules .= " @check"; Looking again, the

bug#68860: race condition with make recheck

2024-08-25 Thread Bogdan via Bug reports for Automake
Karl Berry , 2024-08-25 10:45: Thanks much, Bogdan. -recheck: all %CHECK_DEPS% +recheck: all-am %CHECK_DEPS% Do you have a grip on all-am? Looking at handle_all in bin/automake, I admit I remain baffled as to what all those pieces of all-am are, and why it's done as it is. Te be h

bug#68860: race condition with make recheck

2024-08-25 Thread Karl Berry
Thanks much, Bogdan. -recheck: all %CHECK_DEPS% +recheck: all-am %CHECK_DEPS% Do you have a grip on all-am? Looking at handle_all in bin/automake, I admit I remain baffled as to what all those pieces of all-am are, and why it's done as it is. - $output_rules .= "check-am: all-am\n";