Remove include/ from header paths

Everything is under uefi, put that in the project root
This commit is contained in:
Justin C. Miller
2020-05-25 02:33:03 -07:00
parent f561fd6a74
commit 5fb307a428
9 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,2 @@
include/uefi/protos/* uefi/protos/*
tags tags

View File

@@ -11,7 +11,7 @@ from jinja2 import Environment, FileSystemLoader, Template
template_path = join(dirname(__file__), "templates") template_path = join(dirname(__file__), "templates")
env = Environment(loader=FileSystemLoader(template_path)) env = Environment(loader=FileSystemLoader(template_path))
protos_dir = join("include", "uefi", "protos") protos_dir = join("uefi", "protos")
os.makedirs(protos_dir, exist_ok=True) os.makedirs(protos_dir, exist_ok=True)
proto_template = env.get_template("proto.j2") proto_template = env.get_template("proto.j2")