From a2582362298d8eded28095b7d335aa55045ec517 Mon Sep 17 00:00:00 2001 From: "Christoph M. Wintersteiger" Date: Fri, 19 May 2017 18:51:52 +0100 Subject: [PATCH] Disabled debug output --- scripts/mk_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/mk_util.py b/scripts/mk_util.py index 00c391fa7..112e1f5ad 100644 --- a/scripts/mk_util.py +++ b/scripts/mk_util.py @@ -778,7 +778,7 @@ def extract_c_includes(fname): root_file_name = m1.group(1) slash_pos = root_file_name.rfind('/') if slash_pos >= 0 and root_file_name.find("..") < 0 : #it is a hack for lp include files that behave as continued from "src" - print(root_file_name) + # print(root_file_name) root_file_name = root_file_name[slash_pos+1:] result.append(root_file_name) elif not system_inc_pat.match(line) and non_std_inc_pat.match(line):