Skip to content

Commit 58b473d

Browse files
committed
fixup! Fix validation
1 parent 0c6c9d9 commit 58b473d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/validation.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -527,13 +527,13 @@ static ALLOWED_DYLIBS_BY_MODULE: Lazy<HashMap<&'static str, Vec<MachOAllowedDyli
527527
"_tkinter",
528528
vec![
529529
MachOAllowedDylib {
530-
name: "libtcl8.6.dylib".to_string(),
531-
max_compatibility_version: "1.0.0".try_into().unwrap(),
530+
name: "@rpath/libtcl8.6.dylib".to_string(),
531+
max_compatibility_version: "8.6.0".try_into().unwrap(),
532532
required: true,
533533
},
534534
MachOAllowedDylib {
535-
name: "libtk8.6.dylib".to_string(),
536-
max_compatibility_version: "1.0.0".try_into().unwrap(),
535+
name: "@rpath/libtk8.6.dylib".to_string(),
536+
max_compatibility_version: "8.6.0".try_into().unwrap(),
537537
required: true,
538538
},
539539
],

0 commit comments

Comments
 (0)