Skip to content

Commit 442af7b

Browse files
authored
Merge pull request #18324 from slarew/sgl/fixootsysimgbuilder
Fix dependencies for sysimg out-of-tree builds
2 parents ee9a4f6 + d80fedf commit 442af7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ CORE_SRCS := $(addprefix $(JULIAHOME)/, \
209209
base/reduce.jl \
210210
base/reflection.jl \
211211
base/tuple.jl)
212-
BASE_SRCS := $(shell find $(JULIAHOME)/base -name \*.jl)
212+
BASE_SRCS := $(sort $(shell find $(JULIAHOME)/base -name \*.jl) $(shell find $(BUILDROOT)/base -name \*.jl))
213213

214214
$(build_private_libdir)/inference.ji: $(CORE_SRCS) | $(build_private_libdir)
215215
@$(call PRINT_JULIA, cd $(JULIAHOME)/base && \

0 commit comments

Comments
 (0)