aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-11-03 11:48:13 +0000
committerJussi Pakkanen <jpakkane@gmail.com>2016-11-05 03:10:36 -0700
commitd37bbef41163d211cf5e80628d15c4d03690e183 (patch)
tree77417532646d1cf48c3969d749a8c24d26444721
parent314eb5110e14a71939f1535f4271461d9c439b50 (diff)
downloadmeson-d37bbef41163d211cf5e80628d15c4d03690e183.zip
meson-d37bbef41163d211cf5e80628d15c4d03690e183.tar.gz
meson-d37bbef41163d211cf5e80628d15c4d03690e183.tar.bz2
ninjabackend: fix error message
-rw-r--r--mesonbuild/backend/ninjabackend.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py
index add7dcc..738d316 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -2084,7 +2084,7 @@ rule FORTRAN_DEP_HACK
ninja_command = environment.detect_ninja()
if ninja_command is None:
- raise MesonException('Could not detect Ninja v1.6 or newer)')
+ raise MesonException('Could not detect Ninja v1.6 or newer')
elem = NinjaBuildElement(self.all_outputs, 'clean', 'CUSTOM_COMMAND', 'PHONY')
elem.add_item('COMMAND', [ninja_command, '-t', 'clean'])
elem.add_item('description', 'Cleaning')