aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2020-06-10 08:22:29 +0530
committerNirbheek Chauhan <nirbheek.chauhan@gmail.com>2020-06-11 07:10:43 +0000
commit5b8a63650478a96799e2c8929f66849d1e68a38a (patch)
tree4cfcfb62bfaa5c73b222ac08d7411ff4f9051230
parent18b99b3bc319f84db78ff489d6ca5e0cc0273bcc (diff)
downloadmeson-5b8a63650478a96799e2c8929f66849d1e68a38a.zip
meson-5b8a63650478a96799e2c8929f66849d1e68a38a.tar.gz
meson-5b8a63650478a96799e2c8929f66849d1e68a38a.tar.bz2
Fix typo in bitcode message
-rw-r--r--mesonbuild/coredata.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/coredata.py b/mesonbuild/coredata.py
index c70ca2d..fdba84e 100644
--- a/mesonbuild/coredata.py
+++ b/mesonbuild/coredata.py
@@ -870,7 +870,7 @@ class CoreData:
def emit_base_options_warnings(self, enabled_opts: list):
if 'b_bitcode' in enabled_opts:
- mlog.warning('Base option \'b_bitcode\' is enabled, which is incompatible with many linker options. Incompatible options such as such as \'b_asneeded\' have been disabled.')
+ mlog.warning('Base option \'b_bitcode\' is enabled, which is incompatible with many linker options. Incompatible options such as \'b_asneeded\' have been disabled.')
mlog.warning('Please see https://mesonbuild.com/Builtin-options.html#Notes_about_Apple_Bitcode_support for more details.')
class CmdLineFileParser(configparser.ConfigParser):