summaryrefslogtreecommitdiff
path: root/waf-tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-07-07 23:16:45 +0100
committerCarl Hetherington <cth@carlh.net>2018-07-07 23:16:45 +0100
commitba5915461f1622715a69fa25579e5e27e64fb079 (patch)
tree221ce87dfbac455c32459e07beb92b6003243e89 /waf-tools
parenta4fb6290e31f7e197cc399c745d320442eb093d4 (diff)
SubtitleString -> shared_ptr<Subtitle>
Diffstat (limited to 'waf-tools')
-rw-r--r--waf-tools/clang_compilation_database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/waf-tools/clang_compilation_database.py b/waf-tools/clang_compilation_database.py
index 4d9b5e27..189de1eb 100644
--- a/waf-tools/clang_compilation_database.py
+++ b/waf-tools/clang_compilation_database.py
@@ -37,7 +37,7 @@ def collect_compilation_db_tasks(self):
def write_compilation_database(ctx):
"Write the clang compilation database as JSON"
database_file = ctx.bldnode.make_node('compile_commands.json')
- Logs.info('Build commands will be stored in %s', database_file.path_from(ctx.path))
+ Logs.info('Build commands will be stored in %s' % database_file.path_from(ctx.path))
try:
root = json.load(database_file)
except IOError: