Skip to content

Commit 8febad0

Browse files
committed
Fix what looks like a copy-paste error
1 parent 7d8f520 commit 8febad0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/AutoBuild.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1191,7 +1191,8 @@ function build_jll_package(src_name::String,
11911191
filter!(!isempty, unique!(PATH_list))
11921192
filter!(!isempty, unique!(LIBPATH_list))
11931193
global PATH = join(PATH_list, $(repr(pathsep)))
1194-
global LIBPATH = join(vcat(LIBPATH_list, [$(init_libpath)]), $(repr(pathsep)))) end # __init__()
1194+
global LIBPATH = join(vcat(LIBPATH_list, [$(init_libpath)]), $(repr(pathsep)))
1195+
end # __init__()
11951196
""")
11961197
end
11971198
end

0 commit comments

Comments
 (0)