From b0f4587663d76fd79639b7e22bcac3d859a3abec Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Thu, 25 Jul 2019 03:38:56 +0530 Subject: [PATCH] docs: Document when install: was added to configure_file [skip ci] Somehow we forgot to document this. --- docs/markdown/Release-notes-for-0.50.0.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/markdown/Release-notes-for-0.50.0.md b/docs/markdown/Release-notes-for-0.50.0.md index 44e857372..62a4b8053 100644 --- a/docs/markdown/Release-notes-for-0.50.0.md +++ b/docs/markdown/Release-notes-for-0.50.0.md @@ -334,3 +334,9 @@ Meson now generates a `meson-info.json` file in the `meson-info` directory to provide introspection information about the latest meson run. This file is updated when the build configuration is changed and the build files are (re)generated. + +## New kwarg `install:` for `configure_file()` + +Previously when using `configure_file()`, you could install the outputted file +by setting the `install_dir:` keyword argument. Now, there is an explicit kwarg +`install:` to enable/disable it. Omitting it will maintain the old behaviour.