py/makeqstrdefs.py: Remove restriction that source path can't be absolute.
That's arbitrary restriction, in case of embedding, a source file path may be absolute. For the purpose of filtering out system includes, checking for ".c" suffix is enough.
This commit is contained in:
parent
cd796f85af
commit
dcb904416a
|
@ -30,7 +30,7 @@ def process_file(f):
|
|||
m = re.match(r"#[line]*\s\d+\s\"([^\"]+)\"", line)
|
||||
assert m is not None
|
||||
fname = m.group(1)
|
||||
if fname[0] == "/" or not fname.endswith(".c"):
|
||||
if not fname.endswith(".c"):
|
||||
continue
|
||||
if fname != last_fname:
|
||||
write_out(last_fname, output)
|
||||
|
|
Loading…
Reference in New Issue