aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Sales de Andrade <quantum.analyst@gmail.com>2017-05-02 18:45:11 -0400
committerGuillaume Poirier-Morency <guillaumepoiriermorency@gmail.com>2017-05-02 18:45:56 -0400
commita96d79cc00289a6399f023015859e7c4767f84b0 (patch)
treeecc79d9026302cd312f04049c4e369cd7b2c57d7
parent820fc8ee2455ab8daf55237d08f6bc2530cf290a (diff)
downloadmeson-a96d79cc00289a6399f023015859e7c4767f84b0.zip
meson-a96d79cc00289a6399f023015859e7c4767f84b0.tar.gz
meson-a96d79cc00289a6399f023015859e7c4767f84b0.tar.bz2
ninjabackend: Don't pluralize twice custom target cleaning description
-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 90d8e60..436b1fe 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -2361,7 +2361,7 @@ rule FORTRAN_DEP_HACK
e.add_item('COMMAND', [sys.executable,
self.environment.get_build_command(),
'--internal', 'cleantrees', d_file])
- e.add_item('description', 'Cleaning custom targets directories.')
+ e.add_item('description', 'Cleaning custom target directories.')
e.write(outfile)
# Write out the data file passed to the script
with open(d_file, 'wb') as ofile: