Skip to content
Snippets Groups Projects
Unverified Commit 4f45ad13 authored by Nick Mathewson's avatar Nick Mathewson :family: Committed by teor
Browse files

add_c_file: tolerate ./ in filenames.

parent ef1744e2
No related branches found
No related tags found
No related merge requests found
......@@ -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")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment