mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 04:13:28 +01:00
add_c_file: tolerate ./ in filenames.
This commit is contained in:
parent
ef1744e2c9
commit
4f45ad1394
@ -216,6 +216,9 @@ def run(fn):
|
||||
add them to include.am.
|
||||
"""
|
||||
|
||||
if fn.startswith("./"):
|
||||
fn = fn[2:]
|
||||
|
||||
cf = makeext(fn, "c")
|
||||
hf = makeext(fn, "h")
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user