Skip to content

Commit

Permalink
Merge pull request #26257 from JuliaLang/jb/rmrmdir
Browse files Browse the repository at this point in the history
fix AV build (#26255)
  • Loading branch information
JeffBezanson authored Mar 1, 2018
2 parents 115b86b + bb8440d commit be4e39f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contrib/windows/appveyor_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,6 @@ echo 'FORCE_ASSERTIONS = 1' >> Make.user
cat Make.user
make -j3 VERBOSE=1 all
make -j3 VERBOSE=1 install
make VERBOSE=1 -C examples
make VERBOSE=1 JULIA=../../usr/bin/julia.exe BIN=. "$(make print-CC)" -C test/embedding release
cp usr/bin/busybox.exe julia-*/bin
make build-stats
2 changes: 1 addition & 1 deletion stdlib/Distributed/test/distributed_exec.jl
Original file line number Diff line number Diff line change
Expand Up @@ -1402,7 +1402,7 @@ let
rm(tmp_file, force=true)
rm(tmp_file2, force=true)
rm(tmp_dir2, force=true)
rm(tmp_dir, force=true)
#rm(tmp_dir, force=true)
end
end
# cookie and comand line option `--worker` tests. remove workers, set cookie and test
Expand Down
4 changes: 2 additions & 2 deletions stdlib/Pkg3/src/PlatformEngines.jl
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,11 @@ function probe_platform_engines!(;verbose::Bool = false)
prepend!(compression_engines, [(`7z --help`, gen_7z("7z")...)])

# On windows, we bundle 7z with Julia, so try invoking that directly
exe7z = joinpath(JULIA_HOME, "7z.exe")
exe7z = joinpath(Sys.BINDIR, "7z.exe")
prepend!(compression_engines, [(`$exe7z --help`, gen_7z(exe7z)...)])

# And finally, we want to look for sh as busybox as well:
busybox = joinpath(JULIA_HOME, "busybox.exe")
busybox = joinpath(Sys.BINDIR, "busybox.exe")
prepend!(sh_engines, [(`$busybox sh`)])
end

Expand Down

0 comments on commit be4e39f

Please sign in to comment.