1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-09-16 19:56:17 +00:00

Merge pull request #6405 from cakebaker/cp_remove_macos_12

cp: remove `target_os = "macos-12"`
This commit is contained in:
Sylvestre Ledru 2024-05-17 20:09:49 +02:00 committed by GitHub
commit 89e96b1755
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2114,7 +2114,6 @@ fn handle_no_preserve_mode(options: &Options, org_mode: u32) -> u32 {
#[cfg(not(any( #[cfg(not(any(
target_os = "android", target_os = "android",
target_os = "macos", target_os = "macos",
target_os = "macos-12",
target_os = "freebsd", target_os = "freebsd",
target_os = "redox", target_os = "redox",
)))] )))]
@ -2131,7 +2130,6 @@ fn handle_no_preserve_mode(options: &Options, org_mode: u32) -> u32 {
#[cfg(any( #[cfg(any(
target_os = "android", target_os = "android",
target_os = "macos", target_os = "macos",
target_os = "macos-12",
target_os = "freebsd", target_os = "freebsd",
target_os = "redox", target_os = "redox",
))] ))]