Skip to content

Commit 03de134

Browse files
committed
Allow extensions to trigger from packages in [deps]
This is a partial backport of JuliaLang/julia#54009, with just the pre-compilation piece that lives in Pkg on 1.10
1 parent edfa2ed commit 03de134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/API.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1123,7 +1123,7 @@ function precompile(ctx::Context, pkgs::Vector{PackageSpec}; internal_call::Bool
11231123
extdep_names = extdep_names isa String ? String[extdep_names] : extdep_names
11241124
for extdep_name in extdep_names
11251125
extdep_uuid = weakdeps[extdep_name]
1126-
if extdep_uuid in keys(ctx.env.manifest.deps) || Base.in_sysimage(Base.PkgId(extdep_uuid, extdep_name))
1126+
if extdep_uuid in keys(ctx.env.manifest.deps)
11271127
push!(ext_deps, Base.PkgId(extdep_uuid, extdep_name))
11281128
else
11291129
all_extdeps_available = false

0 commit comments

Comments
 (0)