From f16232856e40e145a773a364c3e9a4013a76f719 Mon Sep 17 00:00:00 2001 From: Guillaume Poirier-Morency Date: Tue, 2 May 2017 10:29:02 -0400 Subject: [PATCH] ninjabackend: Use 'custom targets' instead of 'CustomTarget' in description The build definition is basically cleaning all the directories of all custom targets. --- mesonbuild/backend/ninjabackend.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/backend/ninjabackend.py b/mesonbuild/backend/ninjabackend.py index cc3b1496f..abc044542 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: