[build] Fix configure using relative root path

The `configure` script needs to use an absolute path, or ninja can
sometimes break.
This commit is contained in:
Justin C. Miller
2021-08-28 17:26:43 -07:00
parent f79fe2e056
commit 28068ed36d

2
configure vendored
View File

@@ -6,7 +6,7 @@ def generate(output, config, manifest):
from bonnibel.module import Module
from bonnibel.project import Project
root = Path(__file__).parent
root = Path(__file__).parent.resolve()
project = Project(root)
output = root / output