Skip to content

Commit bb517f8

Browse files
committed
Base.include() includes Base.include_dependency(). ;)
1 parent 165f385 commit bb517f8

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
@@ -1308,7 +1308,7 @@ function build_jll_package(src_name::String,
13081308
if Set(platforms) == Set([AnyPlatform()])
13091309
# We know directly the wrapper we want to include
13101310
jll_jl *= """
1311-
Core.include(@__MODULE__, joinpath(@__DIR__, "wrappers", "any.jl"))
1311+
Base.include(@__MODULE__, joinpath(@__DIR__, "wrappers", "any.jl"))
13121312
"""
13131313
else
13141314
jll_jl *= """
@@ -1324,7 +1324,7 @@ function build_jll_package(src_name::String,
13241324
if best_wrapper === nothing
13251325
@debug("Unable to load $(src_name); unsupported platform \$(triplet(platform_key_abi()))")
13261326
else
1327-
Core.include($(src_name)_jll, best_wrapper)
1327+
Base.include($(src_name)_jll, best_wrapper)
13281328
end
13291329
"""
13301330
end

0 commit comments

Comments
 (0)