aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorMarc Durdin <marc@durdin.net>2024-05-24 11:38:23 +1000
committerEli Schwartz <eschwartz93@gmail.com>2024-05-24 18:27:59 -0400
commit0c802d260c98f990a32ad22f55a055ab65779ccb (patch)
treed0647075d94fdd89df43c55c17f2446c55ef4140 /mesonbuild
parentd57ca7d2a21b70bc5a9659c51bc345f539ccc6c9 (diff)
downloadmeson-0c802d260c98f990a32ad22f55a055ab65779ccb.zip
meson-0c802d260c98f990a32ad22f55a055ab65779ccb.tar.gz
meson-0c802d260c98f990a32ad22f55a055ab65779ccb.tar.bz2
remove deprecation warning for `configure_file` kwarg 'copy'
`configure_file` kwarg `copy` runs at configure time, whereas `fs.copyfile` runs at build time. Both have use cases, so this undeprecates the `configure_file` version. Fixes: #12792
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/interpreter/interpreter.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py
index eb6783c..67c000c 100644
--- a/mesonbuild/interpreter/interpreter.py
+++ b/mesonbuild/interpreter/interpreter.py
@@ -2585,7 +2585,6 @@ class Interpreter(InterpreterBase, HoldableObject):
),
KwargInfo(
'copy', bool, default=False, since='0.47.0',
- deprecated='0.64.0', deprecated_message='Use fs.copyfile instead',
),
KwargInfo('encoding', str, default='utf-8', since='0.47.0'),
KwargInfo('format', str, default='meson', since='0.46.0',