summaryrefslogtreecommitdiff
path: root/waf-tools/clang_compilation_database.py
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-04-15 22:29:52 +0100
committerCarl Hetherington <cth@carlh.net>2018-04-15 22:29:52 +0100
commit90a31686bce2aae372fe7bfcf88d1d36e60e3f3e (patch)
tree93002cd890c9226f465249586db4653cf07e3c31 /waf-tools/clang_compilation_database.py
parent0ff4fa6058b305476e7bc60c590acb6135c49b1c (diff)
Fix thinko.
Diffstat (limited to 'waf-tools/clang_compilation_database.py')
-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 4d9b5e275..189de1eb6 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: