From e94d931e67bc1a23bde957695d5e3c18b8466929 Mon Sep 17 00:00:00 2001 From: NotAShelf Date: Sat, 25 Oct 2025 09:01:35 +0300 Subject: [PATCH] chore: remove redundant unix check in build wrapper Signed-off-by: NotAShelf Change-Id: I174857e67f2e400d5dfdd8bfbe7c681d6a6a6964 --- build.rs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/build.rs b/build.rs index 533368c..f777a7c 100644 --- a/build.rs +++ b/build.rs @@ -5,16 +5,6 @@ const MULTICALL_LINKS: &[&str] = &["stash-copy", "stash-paste", "wl-copy", "wl-paste"]; fn main() { - // Only run on Unix-like systems - #[cfg(not(unix))] - { - println!( - "cargo:warning=Multicall symlinks are only supported on Unix-like \ - systems." - ); - return; - } - // OUT_DIR is something like .../target/debug/build//out // We want .../target/debug or .../target/release let out_dir = env::var("OUT_DIR").expect("OUT_DIR not set");