aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Poirier-Morency <guillaumepoiriermorency@gmail.com>2017-05-02 10:29:02 -0400
committerGuillaume Poirier-Morency <guillaumepoiriermorency@gmail.com>2017-05-02 10:29:58 -0400
commitf16232856e40e145a773a364c3e9a4013a76f719 (patch)
tree03ed0e0fd9aa709843f24ea2c24717acca9a5b6e
parent91dc6a60dfbeda99feeef0fa525ed496f9c4128c (diff)
downloadmeson-f16232856e40e145a773a364c3e9a4013a76f719.zip
meson-f16232856e40e145a773a364c3e9a4013a76f719.tar.gz
meson-f16232856e40e145a773a364c3e9a4013a76f719.tar.bz2
ninjabackend: Use 'custom targets' instead of 'CustomTarget' in description
The build definition is basically cleaning all the directories of all custom targets.
-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 cc3b149..abc0445 100644
--- a/mesonbuild/backend/ninjabackend.py
+++ b/mesonbuild/backend/ninjabackend.py
@@ -2360,7 +2360,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 CustomTarget directories.')
+ e.add_item('description', 'Cleaning custom targets directories.')
e.write(outfile)
# Write out the data file passed to the script
with open(d_file, 'wb') as ofile: