diff --git a/tools/make/generate_compile_commands.py b/tools/make/generate_compile_commands.py index 0fa815c..872fe89 100755 --- a/tools/make/generate_compile_commands.py +++ b/tools/make/generate_compile_commands.py @@ -23,7 +23,6 @@ for line in make_output_lines: if len(line_parts) >= 2 and 'Entering directory' in line: prefix = 'Entering directory ' new_dir = line[line.find(prefix) + len(prefix)+1:-1] - print('new dir: {}'.format(new_dir)) dir_stack.append(new_dir) continue