Skip to content
Snippets Groups Projects
Commit 3c872fd2 authored by Robin Randhawa's avatar Robin Randhawa Committed by Michael Aaron Murphy
Browse files

Fix build breakage on aarch64 due to stale syscall refs

References to the syscall crate's relibc branch broke builds of ion for
aarch64. AArch64 syscalls were added at a later point in time to the
master branch of the syscall crate. Fix things by changing the refs to
use the master branch instead.
parent cb376915
No related branches found
No related tags found
No related merge requests found
......@@ -66,4 +66,4 @@ panic = "abort"
[patch.crates-io]
termion = { git = "https://gitlab.redox-os.org/redox-os/termion" }
liner = { git = "https://gitlab.redox-os.org/redox-os/liner" }
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git", branch = "relibc" }
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git" }
......@@ -11,7 +11,7 @@ libc = "0.2"
users = "0.8.1"
[target."cfg(target_os = \"redox\")".dependencies]
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git", branch = "relibc" }
redox_syscall = { git = "https://gitlab.redox-os.org/redox-os/syscall.git" }
[target."cfg(target_os = \"dragonfly\")".dependencies]
......
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