Skip to content

Commit ccb1c94

Browse files
suggestion
Co-Authored-By: Mosè Giordano <[email protected]>
1 parent eb9827a commit ccb1c94

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/stdlib_dependencies.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ function get_deps_readelf(lib_path::String)
9898

9999
# Only keep `(NEEDED)` lines
100100
needed_str = Sys.isfreebsd() ? "NEEDED" : "(NEEDED)"
101-
libs = filter(l -> occursin(needed_str, l), libs)
101+
libs = filter(occursin(needed_str), libs)
102102

103103
# Grab the SONAME from "Shared library: [$SONAME]"
104104
libs = map(libs) do lib

0 commit comments

Comments
 (0)