Fix the ninja source path

This commit is contained in:
Sameer Rahmani 2023-03-25 15:28:15 +00:00
parent 2cbd170dc2
commit 0152c82f3e
Signed by: lxsameer
GPG Key ID: B0A4AF28AB9FD90B
2 changed files with 2 additions and 1 deletions

View File

@ -52,6 +52,7 @@ function _conan() {
function _create() {
_conan create --user "$user" --channel "$channel" \
--profile:host="../../profiles/stage$1" \
--profile:build="../../profiles/stage$1" \
. "${@:2}"
}

View File

@ -56,7 +56,7 @@ class Ninja(ConanFile):
cmake = CMake(self)
cmake.configure(
{},
build_script_folder=f"Ninja-{self.version}",
build_script_folder=f"ninja-{self.version}",
)
cmake.build()
cmake.install()