Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9a16c08

Browse files
authoredMar 19, 2022
Merge pull request #43735 from JuliaLang/backports-release-1.6
release-1.6: Backports for 1.6.6
2 parents 7be0dcd + 3c8241c commit 9a16c08

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+412
-149
lines changed
 

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $(BUILDROOT)/doc/_build/html/en/index.html: $(shell find $(BUILDROOT)/base $(BUI
4848

4949
julia-symlink: julia-cli-$(JULIA_BUILD_MODE)
5050
ifeq ($(OS),WINNT)
51-
@echo '@"%~dp0\'"$$(echo $(call rel_path,$(BUILDROOT),$(JULIA_EXECUTABLE)) | tr / '\\')"\" '%*' > $(BUILDROOT)/julia.bat
51+
echo '@"%~dp0/'"$$(echo '$(call rel_path,$(BUILDROOT),$(JULIA_EXECUTABLE))')"'" %*' | tr / '\\' > $(BUILDROOT)/julia.bat
5252
chmod a+x $(BUILDROOT)/julia.bat
5353
else
5454
ifndef JULIA_VAGRANT_BUILD

‎base/Base.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,6 @@ include("weakkeydict.jl")
244244
include("logging.jl")
245245
using .CoreLogging
246246

247-
# BinaryPlatforms, used by Artifacts
248-
include("binaryplatforms.jl")
249-
250247
# functions defined in Random
251248
function rand end
252249
function randn end
@@ -298,6 +295,9 @@ using .Order
298295
include("sort.jl")
299296
using .Sort
300297

298+
# BinaryPlatforms, used by Artifacts. Needs `Sort`.
299+
include("binaryplatforms.jl")
300+
301301
# Fast math
302302
include("fastmath.jl")
303303
using .FastMath

0 commit comments

Comments
 (0)
Please sign in to comment.