diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 10:14:20 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-10-01 12:35:42 -0700 |
commit | 20663564bdde2a0ec4977b011259b09523555bcb (patch) | |
tree | 1240881edf7238a3252f34aece72a224582ff51d /docs/markdown/snippets | |
parent | 1d04caff29f675329ecb6491b50578474d71b6f4 (diff) | |
download | meson-20663564bdde2a0ec4977b011259b09523555bcb.zip meson-20663564bdde2a0ec4977b011259b09523555bcb.tar.gz meson-20663564bdde2a0ec4977b011259b09523555bcb.tar.bz2 |
deprecated get_configtool_variable and get_pkgconfig_variable
The get_variable method is able to do everything they do and more,
making it generally more useful. Let's tell people to stop using the old
ones.
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/deprecate_old_variable_methods.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/markdown/snippets/deprecate_old_variable_methods.md b/docs/markdown/snippets/deprecate_old_variable_methods.md new file mode 100644 index 0000000..3f41689 --- /dev/null +++ b/docs/markdown/snippets/deprecate_old_variable_methods.md @@ -0,0 +1,4 @@ +## Deprecate Dependency.get_pkgconfig_variable and Dependency.get_configtool_variable + +These have been replaced with the more versatile `get_variable()` method +already, and shouldn't be used anymore. |