Skip to content

Commit

Permalink
avoid packages in sysimages from automatically count as triggering an…
Browse files Browse the repository at this point in the history
… extension in precompile code, this was fixed in #52841
  • Loading branch information
KristofferC committed Apr 9, 2024
1 parent cee825e commit 57589bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/precompilation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ function precompilepkgs(pkgs::Vector{String}=String[];
all_extdeps_available = true
for extdep_uuid in extdep_uuids
extdep_name = env.names[extdep_uuid]
if extdep_uuid in keys(env.deps) || Base.in_sysimage(Base.PkgId(extdep_uuid, extdep_name))
if extdep_uuid in keys(env.deps)
push!(ext_deps, Base.PkgId(extdep_uuid, extdep_name))
else
all_extdeps_available = false
Expand Down

0 comments on commit 57589bd

Please sign in to comment.