Skip to content

Commit 86201e1

Browse files
committed
Base.include() includes Base.include_dependency(). ;)
1 parent 2ed0c74 commit 86201e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AutoBuild.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,7 +1311,7 @@ function build_jll_package(src_name::String,
13111311
if Set(platforms) == Set([AnyPlatform()])
13121312
# We know directly the wrapper we want to include
13131313
jll_jl *= """
1314-
Core.include(@__MODULE__, joinpath(@__DIR__, "wrappers", "any.jl"))
1314+
Base.include(@__MODULE__, joinpath(@__DIR__, "wrappers", "any.jl"))
13151315
"""
13161316
else
13171317
jll_jl *= """
@@ -1327,7 +1327,7 @@ function build_jll_package(src_name::String,
13271327
if best_wrapper === nothing
13281328
@debug("Unable to load $(src_name); unsupported platform \$(triplet(platform_key_abi()))")
13291329
else
1330-
Core.include($(src_name)_jll, best_wrapper)
1330+
Base.include($(src_name)_jll, best_wrapper)
13311331
end
13321332
"""
13331333
end

0 commit comments

Comments
 (0)