diff options
author | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-05-02 10:29:02 -0400 |
---|---|---|
committer | Guillaume Poirier-Morency <guillaumepoiriermorency@gmail.com> | 2017-05-02 10:29:58 -0400 |
commit | f16232856e40e145a773a364c3e9a4013a76f719 (patch) | |
tree | 03ed0e0fd9aa709843f24ea2c24717acca9a5b6e /mesonbuild/backend/ninjabackend.py | |
parent | 91dc6a60dfbeda99feeef0fa525ed496f9c4128c (diff) | |
download | meson-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.
Diffstat (limited to 'mesonbuild/backend/ninjabackend.py')
-rw-r--r-- | mesonbuild/backend/ninjabackend.py | 2 |
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: |