diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-05-23 15:38:29 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-05-23 15:02:27 +0000 |
commit | d4ee5341556dba56d3298cef8983acb11227fa8f (patch) | |
tree | 2e8a0fbdb9c2ce2c5eb18dd2555c1b4b30aefa06 /mesonbuild | |
parent | 55a0831bc3d00d642197bc0755191c9fe1ef2ac7 (diff) | |
download | meson-d4ee5341556dba56d3298cef8983acb11227fa8f.zip meson-d4ee5341556dba56d3298cef8983acb11227fa8f.tar.gz meson-d4ee5341556dba56d3298cef8983acb11227fa8f.tar.bz2 |
interpreter: fix configure_file() message on empty configuration_data() [skip ci]
The 'copy' kwarg will appear in the upcoming 0.47 release, not 0.46.
Diffstat (limited to 'mesonbuild')
-rw-r--r-- | mesonbuild/interpreter.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 64fc693..f4ca059 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -3212,7 +3212,7 @@ root and issuing %s. mlog.warning('Got an empty configuration_data() object: ' 'optimizing copy automatically; if you want to ' 'copy a file to the build dir, use the \'copy:\' ' - 'keyword argument added in 0.46.0', location=node) + 'keyword argument added in 0.47.0', location=node) # Perform the appropriate action if 'configuration' in kwargs: conf = kwargs['configuration'] |