profile changes
This commit is contained in:
+4
-4
@@ -10,7 +10,7 @@ source = tarball(
|
||||
host_deps = ["autoconf", "automake", "binutils", "gcc"]
|
||||
deps = [profile["libc"]]
|
||||
|
||||
build_if = profile["arch"] in ("x86_64", "aarch64", "riscv64", "loongarch64")
|
||||
build_if = profile.arch in ("x86_64", "aarch64", "riscv64", "loongarch64")
|
||||
|
||||
arch_args = {
|
||||
"x86_64": [
|
||||
@@ -25,8 +25,8 @@ arch_args = {
|
||||
}
|
||||
|
||||
configure, build, install = autotools(
|
||||
configure_args=["--enable-uefi-cd", *arch_args[profile["arch"]]],
|
||||
configure_env={"TOOLCHAIN_FOR_TARGET": profile["triple"] + "-"},
|
||||
configure_args=["--enable-uefi-cd", *arch_args[profile.arch]],
|
||||
configure_env={"TOOLCHAIN_FOR_TARGET": profile.triple + "-"},
|
||||
)
|
||||
|
||||
subpackages = [
|
||||
@@ -40,7 +40,7 @@ subpackages = [
|
||||
),
|
||||
]
|
||||
|
||||
if profile["arch"] == "x86_64":
|
||||
if profile.arch == "x86_64":
|
||||
subpackages.append(
|
||||
subpackage(
|
||||
"limine-bios",
|
||||
|
||||
Reference in New Issue
Block a user