Skip to content

Commit

Permalink
[CYGWIN] [BUILD] [INSTALL] Fix make install error
Browse files Browse the repository at this point in the history
  • Loading branch information
stahta01 committed Mar 16, 2023
1 parent c37fc27 commit 23ec348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -350,9 +350,9 @@ else ifeq ($(JULIA_BUILD_MODE),debug)
endif

# Cache stdlibs
@$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --startup-file=no $(JULIAHOME)/contrib/cache_stdlibs.jl)
@$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --startup-file=no $(call cygpath_w,$(JULIAHOME)/contrib/cache_stdlibs.jl))
# CI uses `--check-bounds=yes` which impacts the cache flags
@$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --startup-file=no --check-bounds=yes $(JULIAHOME)/contrib/cache_stdlibs.jl)
@$(call PRINT_JULIA, $(call spawn,$(JULIA_EXECUTABLE)) --startup-file=no --check-bounds=yes $(call cygpath_w,$(JULIAHOME)/contrib/cache_stdlibs.jl))

# Copy in all .jl sources as well
mkdir -p $(DESTDIR)$(datarootdir)/julia/base $(DESTDIR)$(datarootdir)/julia/test
Expand Down

0 comments on commit 23ec348

Please sign in to comment.