Skip to content

Commit

Permalink
use new cp force keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
stevengj committed Aug 14, 2018
1 parent 86d8c94 commit 9e98a1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/compile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ function compile(libname, tarball_url, hash; prefix=BinaryProvider.global_prefix
run(`make`)
run(`make install`)
mkpath(libdir(prefix))
cp("$install_dir/lib/libzmq.$dlext", joinpath(libdir(prefix), libname*"."*dlext),
remove_destination=true, follow_symlinks=true)
Compat.cp("$install_dir/lib/libzmq.$dlext", joinpath(libdir(prefix), libname*"."*dlext),
force=true, follow_symlinks=true)
end
end

0 comments on commit 9e98a1f

Please sign in to comment.