From f2092fa973ac938bd3a45bc245f3ccd1af8e36b9 Mon Sep 17 00:00:00 2001 From: Red Bear OS Date: Sun, 12 Jul 2026 02:23:20 +0300 Subject: [PATCH] fix: correct redox-ioctl patch path in Cargo.toml The [patch] section pointed to ../../relibc/source/redox-ioctl which doesn't exist. Fixed to ../relibc/redox-ioctl matching the main dependency path at line 114. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 43abbb0c54..63ae099d07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -153,4 +153,4 @@ libredox = { path = "../libredox" } redox-scheme = { path = "../redox-scheme" } [patch."https://gitlab.redox-os.org/redox-os/relibc.git"] -redox-ioctl = { path = "../../relibc/source/redox-ioctl" } +redox-ioctl = { path = "../relibc/redox-ioctl" }