Skip to content

Commit

Permalink
Merge pull request #7752 from tkelman/cygwin-buildfix
Browse files Browse the repository at this point in the history
Use NTFS junctions to share/julia/base etc instead of Cygwin symlinks
  • Loading branch information
Keno committed Jul 28, 2014
2 parents 880672c + 6d415e1 commit 8b743d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -706,6 +706,8 @@ $$(subst $$(abspath $(JULIAHOME))/,,$$(abspath $(2)/$(1))): $$(abspath $(2)/$(1)
$$(abspath $(2)/$(1)): | $$(abspath $(2))
ifeq ($(BUILD_OS), WINNT)
@cmd //C mklink //J $$(call mingw_to_dos,$(2)/$(1),cd $(2) &&) $$(call mingw_to_dos,$(1),)
else ifneq (,$(findstring CYGWIN,$(BUILD_OS)))
@cmd /C mklink /J $$(call cygpath_w,$(2)/$(1)) $$(call cygpath_w,$(1))
else ifdef JULIA_VAGRANT_BUILD
@cp -R $$(abspath $(1)) $$@
else
Expand Down

0 comments on commit 8b743d1

Please sign in to comment.