Rollup merge of #147093 - jackpot51:redox-path, r=bjorn3
redox: switch to colon as path separator We recently changed this in order to better comply with assumptions about Unix-like systems. The current PATH is set to `/usr/bin` with no separators in order to ease the transition.
This commit is contained in:
commit
f22af64853
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ use crate::{fmt, io, iter, mem, ptr, slice, str};
|
|||
|
||||
const TMPBUF_SZ: usize = 128;
|
||||
|
||||
const PATH_SEPARATOR: u8 = if cfg!(target_os = "redox") { b';' } else { b':' };
|
||||
const PATH_SEPARATOR: u8 = b':';
|
||||
|
||||
unsafe extern "C" {
|
||||
#[cfg(not(any(target_os = "dragonfly", target_os = "vxworks", target_os = "rtems")))]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue