From mboxrd@z Thu Jan 1 00:00:00 1970 From: Adolf Belka To: development@lists.ipfire.org Subject: [PATCH] make: Update to version 4.4.1 Date: Sun, 03 Dec 2023 17:54:17 +0100 Message-ID: <20231203165417.44152-1-adolf.belka@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3583963524021865095==" List-Id: --===============3583963524021865095== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable - IPFire-3.x - Update from version 4.4 to 4.4.1 - Changelog 4.4.1 This release is primarily a bug-fix release. A complete list of bugs fixed in this version is available here: https://sv.gnu.org/bugs/index.php?group=3Dmake&report_id=3D111&fix_release_i= d=3D110&set=3Dcustom * WARNING: Backward-incompatibility! In previous releases it was not well-defined when updates to MAKEFLAGS made inside a makefile would be visible. This release ensures they are visible immediately, even when invoking $(shell ...) functions. Also, command line variable assignments are now always present in MAKEFLAGS, even when parsing makefiles. Implementation provided by Dmitry Goncharov * New feature: Parallel builds of archives Previously it was not possible to use parallel builds with archives. It is still not possible using the built-in rules, however you can now override the built-in rules with a slightly different set of rules and use parallel builds with archive creation. See the "Dangers When Using Archives" secti= on of the GNU Make manual, and https://savannah.gnu.org/bugs/index.php?14927 * Previously target-specific variables would inherit their "export" capabili= ty from parent target-specific variables even if they were marked private. N= ow private parent target-specific variables have no affect. For more details see https://savannah.gnu.org/bugs/index.php?61463 * Disable FIFO jobserver on GNU/Hurd and Cygwin Experimentation shows that the new FIFO-based jobserver doesn't work well = on GNU/Hurd or Cygwin: revert these systems to use the pipe-based jobserver. * Updates to allow building on OS/2 Provided by KO Myung-Hun * New platform: GNU Make is supported on z/OS Thanks to Igor Todorovski for the patches and test= ing assistance. Signed-off-by: Adolf Belka --- make/make.nm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/make.nm b/make/make.nm index 6d796b6ef..b21faf42a 100644 --- a/make/make.nm +++ b/make/make.nm @@ -4,7 +4,7 @@ ############################################################################= ### =20 name =3D make -version =3D 4.4 +version =3D 4.4.1 release =3D 1 =20 maintainer =3D Michael Tremer --=20 2.42.1 --===============3583963524021865095==--