From 89f93abe3afa9b63500d9bc8f4e23660222e138d Mon Sep 17 00:00:00 2001 From: Mark Kittisopikul Date: Fri, 10 Dec 2021 22:23:00 -0500 Subject: [PATCH 1/2] Comment out pre-unlink.sh command --- recipe/pre-unlink.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/pre-unlink.sh b/recipe/pre-unlink.sh index 6363aff5..4c3ff3dd 100644 --- a/recipe/pre-unlink.sh +++ b/recipe/pre-unlink.sh @@ -1 +1 @@ -"${PREFIX}/bin/julia" -e 'rm(ENV["JULIA_PKGDIR"], recursive=true)' >> "${PREFIX}/.messages.txt" 2>&1 +#"${PREFIX}/bin/julia" -e 'rm(ENV["JULIA_PKGDIR"], recursive=true)' >> "${PREFIX}/.messages.txt" 2>&1 From 2d252be632c40378c941d06ee06a71244a82c1c3 Mon Sep 17 00:00:00 2001 From: Mark Kittisopikul Date: Fri, 10 Dec 2021 22:27:06 -0500 Subject: [PATCH 2/2] Update juliarc.jl --- recipe/juliarc.jl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/recipe/juliarc.jl b/recipe/juliarc.jl index 544d7d45..c5b1b423 100644 --- a/recipe/juliarc.jl +++ b/recipe/juliarc.jl @@ -1,6 +1,10 @@ +#= +# This code is out of date and has not worked for some time. +# The new location of this file should be startup.jl (nominally ~/.julia/config/startup.jl) JULIA_PREFIX = abspath(joinpath(Base.source_path(), "..", "..", "..")) if !("JULIA_PKGDIR" in keys(ENV)) ENV["JULIA_PKGDIR"] = joinpath(JULIA_PREFIX, "share", "julia", "site") Base.LOAD_CACHE_PATH[1] = joinpath(ENV["JULIA_PKGDIR"], "lib", string("v", join(split(string(VERSION), ".")[1:2], "."))) end +#=