diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-06-05 08:33:36 -0700 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-29 10:56:25 +0000 |
commit | f3a8f9c34d95d862fb4d12869a7b31cea592561f (patch) | |
tree | c6670c6aeee48e39874377104d945467366a8443 /docs/markdown | |
parent | 14fe0985f7ac6cce317e355ae457e7cf5fbb8ee4 (diff) | |
download | meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.zip meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.tar.gz meson-f3a8f9c34d95d862fb4d12869a7b31cea592561f.tar.bz2 |
Options: treat array option -Dopt= and -Dopt=[] as equivalent
Currently the former will be parsed as [''], while the latter is parsed
as [] in python. This makes for some obnoxious special handling
depending on what the user passes. This is even more obnoxious since for
string type arguments this doesn't require special handling.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Build-options.md | 3 | ||||
-rw-r--r-- | docs/markdown/snippets/empty-array-opts.md | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/markdown/Build-options.md b/docs/markdown/Build-options.md index 0093a1b..66c9cb5 100644 --- a/docs/markdown/Build-options.md +++ b/docs/markdown/Build-options.md @@ -61,6 +61,9 @@ empty. The `value` parameter specifies the default value of the option and if it is unset then the values of `choices` will be used as the default. +As of 0.47.0 -Dopt= and -Dopt=[] both pass an empty list, before this -Dopt= +would pass a list with an empty string. + This type is available since version 0.44.0 ### Features diff --git a/docs/markdown/snippets/empty-array-opts.md b/docs/markdown/snippets/empty-array-opts.md new file mode 100644 index 0000000..6d3b05d --- /dev/null +++ b/docs/markdown/snippets/empty-array-opts.md @@ -0,0 +1,5 @@ +## Array options treat -Dopt= and -Dopt=[] as equivalent + +Prior to this change passing -Dopt= to an array opt would be interpreted as +[''] (an array with an empty string), now -Dopt= is the same as -Dopt=[], an +empty list. |