Skip to content

Commit

Permalink
Merge pull request #17416 from JuliaLang/tk/avbusybox
Browse files Browse the repository at this point in the history
don't download busybox-w32 every time

[ci skip] the merge commit
  • Loading branch information
tkelman authored Jul 14, 2016
2 parents 70fff5b + 5c453e2 commit 894fbe7
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions contrib/windows/msys_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,11 @@ if [ -z "`which make 2>/dev/null`" ]; then
export PATH=$PWD/bin:$PATH
fi

f=busybox-w32-FRP-483-g31277ab.exe
echo "Downloading $f"
$curlflags -o usr/bin/busybox.exe http://frippery.org/files/busybox/$f
if ! [ -e usr/bin/busybox.exe ]; then
f=busybox-w32-FRP-483-g31277ab.exe
echo "Downloading $f"
$curlflags -o usr/bin/busybox.exe http://frippery.org/files/busybox/$f
fi

for lib in SUITESPARSE ARPACK BLAS LAPACK FFTW \
GMP MPFR PCRE LIBUNWIND OPENSPECFUN; do
Expand Down

0 comments on commit 894fbe7

Please sign in to comment.