Skip to content

Commit 0cf3070

Browse files
committed
Fix dlopen flags writing
1 parent 35e4fd9 commit 0cf3070

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/AutoBuild.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1183,7 +1183,7 @@ function build_jll_package(src_name::String,
11831183
println(io, """
11841184
# Manually `dlopen()` this right now so that future invocations
11851185
# of `ccall` with its `SONAME` will find this path immediately.
1186-
global $(vp)_handle = dlopen($(vp)_path$(BinaryBuilderBase.dlopen_flags_str(p)))
1186+
global $(vp)_handle = dlopen($(vp)_path, $(BinaryBuilderBase.dlopen_flags_str(p)))
11871187
push!(LIBPATH_list, dirname($(vp)_path))
11881188
""")
11891189
elseif p isa ExecutableProduct

0 commit comments

Comments
 (0)