25fb843c40
The prior commit switched the recipe to `[source] path = "source"`, but .gitignore:77 still listed `local/recipes/shells/brush/source` (a leftover from when brush was a transient upstream git fetch), so the vendored tree was not tracked — a fresh clone would have no brush source and the build would fail. Drop that ignore line and commit the vendored working tree (reubeno/brush @ 897b373e, with the Redox port patches pre-applied). brush is now a durable local fork like the other path=source recipes. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
482 B
Rust
12 lines
482 B
Rust
//! Defines a `pty` cfg for platforms that have a working PTY backend (i.e.
|
|
//! where the `pty-process` library we use for pty-based bash tests is supported).
|
|
//!
|
|
//! Keep this predicate in sync with the `[target.'cfg(...)'.dependencies]`
|
|
//! section in `Cargo.toml` (Cargo manifests can't reference custom cfg names).
|
|
|
|
fn main() {
|
|
cfg_aliases::cfg_aliases! {
|
|
pty: { any(target_os = "linux", target_os = "android", target_os = "macos", target_os = "freebsd") },
|
|
}
|
|
}
|