diff options
author | Paul Smith <psmith@gnu.org> | 2012-01-30 00:21:57 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2012-01-30 00:21:57 +0000 |
commit | ef6461611b8fb7cd4a92168d4c319153462afb5a (patch) | |
tree | 715f4d6f1177ce9bb4e5d2d84bf89575c7906175 /NEWS | |
parent | fca11f60390cf607f68b497c3909b1fb40251070 (diff) | |
download | gunmake-ef6461611b8fb7cd4a92168d4c319153462afb5a.tar.gz |
Add support for "::=" simple assignment operator.
The next POSIX standard will define "::=" to have the same behavior
as GNU make's ":=", so add support for this new operator.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -38,6 +38,12 @@ http://sv.gnu.org/bugs/index.php?group=make&report_id=111&fix_release_id=101&set interpreted as shell assignment. Change your assignment to add whitespace between the "!" and "=": "variable! = value" +* New feature: "::=" simple assignment operator as defined by POSIX in 2012. + This operator has identical functionality to ":=" in GNU make, but will be + portable to any implementation of make conforming to a sufficiently new + version of POSIX (see http://austingroupbugs.net/view.php?id=330). It is + not necessary to define the .POSIX target to access this operator. + * New feature: GNU Guile integration This version of GNU make can be compiled with GNU Guile integration. GNU Guile serves as an embedded extension language for make. |