summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorPaul Smith <psmith@gnu.org>2022-09-24 18:42:01 -0400
committerPaul Smith <psmith@gnu.org>2022-09-25 13:37:12 -0400
commitd4cb7ae6d486089006eee182b12ad0f4309119dd (patch)
tree99ad3cc3c38d1c8e9c641ae3f82bcea893ed3c89 /NEWS
parent387d349dc8211e3eb2955cc5e29a85f186af82ce (diff)
downloadmake-git-d4cb7ae6d486089006eee182b12ad0f4309119dd.tar.gz
* configure.ac: Update to GNU make 4.3.91
* NEWS: Update the version and clarify some backward-compat issues.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS27
1 files changed, 18 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index b2e9dfca..09e39584 100644
--- a/NEWS
+++ b/NEWS
@@ -9,13 +9,30 @@ which is contained in this distribution as the file doc/make.texi.
See the README file and the GNU make manual for instructions for
reporting bugs.
-Version 4.3.90 (20 Sep 2022)
+Version 4.3.91 (20 Sep 2022)
A complete list of bugs fixed in this version is available here:
https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=109&set=custom
* WARNING: Backward-incompatibility!
+ GNU make now uses temporary files in more situations than previous releases.
+ If your build system sets TMPDIR (or TMP or TEMP on Windows) and deletes the
+ contents during the build, or uses restrictive permissions, this may cause
+ problems. You can choose an alternative temporary directory only for use by
+ GNU make by setting the new MAKE_TMPDIR environment variable. Note that
+ this value CANNOT be set inside the makefile, since make needs to find its
+ temporary directory before the makefiles are parsed.
+
+* WARNING: Backward-incompatibility!
+ Previously each target in a grouped target rule (pattern or explicit) was
+ considered individually: if the targets needed by the build were not out of
+ date the recipe was not run even if other targets in the group were out of
+ date. Now if any of the grouped targets are needed by the build, then if
+ any of the grouped targets are out of date the recipe is run and all targets
+ in the group are considered updated.
+
+* WARNING: Backward-incompatibility!
Previously if --no-print-directory was seen anywhere in the environment or
command line it would take precedence over any --print-directory. Now, the
last setting of directory printing options seen will be used, so a command
@@ -105,14 +122,6 @@ https://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=109&se
top-level invocation of GNU make, or via MAKEFLAGS or GNUMAKEFLAGS.
To detect this change search for 'jobserver-fifo' in the .FEATURES variable.
-* New feature: The MAKE_TMPDIR environment variable
- If you prefer that GNU make place temporary files in a different directory
- than the standard TMPDIR (or TMP or TEMP on Windows), set the MAKE_TMPDIR
- environment variable before starting make (this value CANNOT be set inside
- the makefile, since make needs to find its temporary directory before the
- makefiles are parsed). This is useful for build systems which reset TMPDIR
- and clean it out during the build process.
-
* Some POSIX systems (*BSD) do not allow locks to be taken on pipes, which
caused the output sync feature to not work properly there. Also multiple
invocations of make redirecting to the same output file (e.g., /dev/null)