Skip to content

Commit 8b524de

Browse files
authored
[AutoBuild] Fix initial value of products_info (#1159)
1 parent 28202b9 commit 8b524de

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
@@ -1175,7 +1175,7 @@ function build_jll_package(src_name::String,
11751175
dependencies = Dependency[d for d in dependencies if is_runtime_dependency(d)]
11761176

11771177
platforms = keys(build_output_meta)
1178-
products_info = Dict{Product,Any}
1178+
products_info = Dict{Product,Any}()
11791179
for platform in sort(collect(platforms), by = triplet)
11801180
if verbose
11811181
@info("Generating jll package for $(triplet(platform)) in $(code_dir)")

0 commit comments

Comments
 (0)