Re: [RESEND PATCH] autoconf: store autom4te request keys in sorted order

2022-09-09 Thread Paul Eggert
Thanks, I installed that.

Re: [PATCH] autoconf: fix build on upcoming GNU make-4.4

2022-09-09 Thread Sergei Trofimovich
On Fri, 9 Sep 2022 16:59:21 -0500 Paul Eggert wrote: > Thanks for the bug report. I installed the attached, which isn't the > same as what you suggested, but which should fix the problem. You version works for me as well. Thank you! -- Sergei

Re: [PATCH] autoconf: fix build on upcoming GNU make-4.4

2022-09-09 Thread Paul Eggert
Thanks for the bug report. I installed the attached, which isn't the same as what you suggested, but which should fix the problem.From 31f673434ee402258b45e958c88acc8725d82b1a Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 9 Sep 2022 16:54:11 -0500 Subject: [PATCH] Port to GNU make 4.4 *

[PATCH] autoconf: fix build on upcoming GNU make-4.4

2022-09-09 Thread Sergei Trofimovich
>From https://savannah.gnu.org/bugs/?63040: GNU make 4.4 will slightly change the rules it uses to export variables to $(shell ...) calls. `autoconf` uses unportable variant of assignment: export PATH = $(shell echo "`pwd`/tests:$$PATH") This causes build failure on `make` from `git`:

[RESEND PATCH] autoconf: store autom4te request keys in sorted order

2022-09-09 Thread Sergei Trofimovich
Notced unstable key order when debugging unrelated bug. Data::Dumper's SortKeys() makes ordering stable and decreases diffs from run to run. No functional change otherwise. * lib/Autom4te/C4che.pm * lib/Autom4te/Request.pm: Sort request keys in serialization. --- lib/Autom4te/C4che.pm | 2 +-