-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ export | |
Meta, | ||
Operators, | ||
Pkg, | ||
Git, | ||
LibGit2, | ||
StackTraces, | ||
Profile, | ||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# Set up environment for Julia Windows binary distribution | ||
ENV["PATH"] = JULIA_HOME*";"*joinpath(JULIA_HOME,"..","Git","bin")*";"*ENV["PATH"] | ||
ENV["PATH"] = JULIA_HOME*";"*ENV["PATH"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,25 +86,21 @@ case $(uname) in | |
esac | ||
|
||
# Download most recent Julia binary for dependencies | ||
# Fix directory not found error during decompression on msys2 | ||
mkdir -p usr/Git/usr | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
yuyichao
Contributor
|
||
if ! [ -e julia-installer.exe ]; then | ||
f=julia-latest-win$bits.exe | ||
echo "Downloading $f" | ||
$curlflags -O https://s3.amazonaws.com/julianightlies/bin/winnt/x$archsuffix/$f | ||
echo "Extracting $f" | ||
$SEVENZIP x -y $f >> get-deps.log | ||
fi | ||
for i in bin/*.dll Git/usr/bin/*.dll Git/usr/bin/*.exe; do | ||
for i in bin/*.dll; do | ||
$SEVENZIP e -y julia-installer.exe "$i" \ | ||
-ousr\\`dirname $i | sed -e 's|/julia||' -e 's|/|\\\\|g'` >> get-deps.log | ||
done | ||
for i in share/julia/base/pcre_h.jl; do | ||
$SEVENZIP e -y julia-installer.exe "$i" -obase >> get-deps.log | ||
done | ||
echo "override PCRE_INCL_PATH =" >> Make.user | ||
# suppress "bash.exe: warning: could not find /tmp, please create!" | ||
mkdir -p usr/Git/tmp | ||
# Remove libjulia.dll if it was copied from downloaded binary | ||
rm -f usr/bin/libjulia.dll | ||
rm -f usr/bin/libjulia-debug.dll | ||
|
This file was deleted.
This file was deleted.
This file was deleted.
Can this be added back? Ref #16202
mkdir -p usr/bin
ormkdir -p usr
is probably enough now.