From f1129078560631fe74772b970d78d49388979787 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Sun, 23 Dec 2018 00:11:51 -0800 Subject: [PATCH] Use JULIAHOME location of stdlib files, not build_datarootdir for STDLIB_SRCS --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ea67778254cbe..f5a0dd0f5bae1 100644 --- a/Makefile +++ b/Makefile @@ -184,7 +184,7 @@ COMPILER_SRCS += $(shell find $(JULIAHOME)/base/compiler -name \*.jl) # sort these to remove duplicates BASE_SRCS := $(sort $(shell find $(JULIAHOME)/base -name \*.jl -and -not -name sysimg.jl) \ $(shell find $(BUILDROOT)/base -name \*.jl -and -not -name sysimg.jl)) -STDLIB_SRCS := $(JULIAHOME)/base/sysimg.jl $(shell find $(build_datarootdir)/julia/stdlib/$(VERSDIR)/*/src -name \*.jl) +STDLIB_SRCS := $(JULIAHOME)/base/sysimg.jl $(shell find $(JULIAHOME)/stdlib/*/src -name \*.jl) RELBUILDROOT := $(shell $(JULIAHOME)/contrib/relative_path.sh "$(JULIAHOME)/base" "$(BUILDROOT)/base/") $(build_private_libdir)/corecompiler.ji: $(COMPILER_SRCS) | $(build_private_libdir)