aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-08-11 18:16:03 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2018-08-11 09:15:05 -0700
commitf80c11e7ee4f521b1b4e3af56293fdcac15676fe (patch)
tree3faaf01b8d03966bfdb0e78a303bed86230f5e50
parentfc90c4a331fe878373b8f2e571b2bf031840c0bb (diff)
downloadmeson-f80c11e7ee4f521b1b4e3af56293fdcac15676fe.zip
meson-f80c11e7ee4f521b1b4e3af56293fdcac15676fe.tar.gz
meson-f80c11e7ee4f521b1b4e3af56293fdcac15676fe.tar.bz2
Clarify the FeatureNew summary message
Fixes https://github.com/mesonbuild/meson/issues/3858
-rw-r--r--mesonbuild/interpreterbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreterbase.py b/mesonbuild/interpreterbase.py
index e5d7eb1..fd732bc 100644
--- a/mesonbuild/interpreterbase.py
+++ b/mesonbuild/interpreterbase.py
@@ -228,7 +228,7 @@ class FeatureNew(FeatureCheckBase):
@staticmethod
def get_warning_str_prefix(tv):
- return 'Project specifies a minimum meson_version \'{}\' which conflicts with:'.format(tv)
+ return 'Project specifies a minimum meson_version \'{}\' but uses features which were added in newer versions:'.format(tv)
def log_usage_warning(self, tv):
mlog.warning('Project targetting \'{}\' but tried to use feature introduced '