diff options
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 23 |
1 files changed, 13 insertions, 10 deletions
@@ -18,15 +18,15 @@ Version 3.81beta3 * WARNING: Backward-incompatibility! GNU make now implements a generic "second expansion" feature on the - prerequisites of both explicit and implicit (pattern) targets. After - the rule has been parsed, the prerequisites are expanded a second - time, this time with all the automatic variables in scope. This means - that in addition to using standard SysV $$@ in prerequisites lists, - you can also use complex functions such as $$(patsubst f%r,b%o,$$@) etc. - This behavior applies to implicit rules, as well, where the second - expansion occurs after the rule is matched. - However, this means that you need to double-quote any "$" in your - filenames; instead of "foo: boo$$bar" you must write "foo: foo$$$$bar" + prerequisites of both explicit and implicit (pattern) rules. After + all rules have been parsed the prerequisites are expanded again, this + time with all the automatic variables in scope. This means that in + addition to using standard SysV $$@ in prerequisites lists, you can + also use complex functions such as $$(notdir $$@) etc. This behavior + applies to implicit rules, as well, where the second expansion occurs + after the rule is matched. However, this means that you need to + double-quote any "$" in your filenames; instead of "foo: boo$$bar" you + must write "foo: foo$$$$bar" * New command-line option: -L (--check-symlink-times). On systems that support symbolic links, if this option is given then GNU make will @@ -50,6 +50,8 @@ Version 3.81beta3 load average accordingly. * New special variables available in this release: + - .FEATURES: Contains a list of special features available in this + version of GNU make. - .DEFAULT_TARGET: Contains the name of the default target make will use if no targets are provided on the command line. It can be set to change the default target. @@ -84,7 +86,8 @@ Version 3.81beta3 should not be impacted. * New translations for Swedish, Chinese (simplified), Ukrainian, - Belarusian, Finnish, and Irish. Many updated translations. + Belarusian, Finnish, Kinyarwandan, and Irish. Many updated + translations. Version 3.80 |