diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-04-17 23:29:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-17 23:29:15 +0300 |
commit | 1952ef5ae13376084dc277de38ff3a6dafb8e595 (patch) | |
tree | b0ac33ea58e6ef4d92aca54f21d4c924fd43d821 /docs/markdown/snippets | |
parent | 8ee1e49ae683cbd7eb10da37327062a490cbee70 (diff) | |
parent | 1c48cc08e09b1ea860a4972b752d4f053433fa6f (diff) | |
download | meson-1952ef5ae13376084dc277de38ff3a6dafb8e595.zip meson-1952ef5ae13376084dc277de38ff3a6dafb8e595.tar.gz meson-1952ef5ae13376084dc277de38ff3a6dafb8e595.tar.bz2 |
Merge pull request #3243 from dcbaker/accept-d-setup
Accept -D for meson level options durring initial configuration
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/d-options-for-meson-setup.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/d-options-for-meson-setup.md b/docs/markdown/snippets/d-options-for-meson-setup.md new file mode 100644 index 0000000..37afbe0 --- /dev/null +++ b/docs/markdown/snippets/d-options-for-meson-setup.md @@ -0,0 +1,6 @@ +## Meson and meson configure now accept the same arguments + +Previously meson required that builtin arguments (like prefix) be passed as +`--prefix` to `meson` and `-Dprefix` to `meson configure`. `meson` now accepts -D +form like `meson configure` has. `meson configure` also accepts the `--prefix` +form, like `meson` has. |