Skip to content

Commit 1c33ee1

Browse files
committed
Fixes for 1.0
1 parent a57c72e commit 1c33ee1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

deps/scratch.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,12 +48,12 @@ if libm == "libopenlibm"
4848
end
4949
for f in readdir(joinpath(openlibm_src, "include"))
5050
cp(joinpath(openlibm_src, "include", f), joinpath(openlibm_include, f),
51-
remove_destination=true, follow_symlinks=true)
51+
force=true, follow_symlinks=true)
5252
end
5353
for f in readdir(joinpath(openlibm_src, "src"))
5454
if endswith(f, ".h")
5555
cp(joinpath(openlibm_src, "src", f), joinpath(openlibm_include, f),
56-
remove_destination=true, follow_symlinks=true)
56+
force=true, follow_symlinks=true)
5757
end
5858
end
5959
else
@@ -79,7 +79,7 @@ elseif Sys.ARCH === :x86_64
7979
fc *= " -m64"
8080
end
8181

82-
extra_ld = Sys.is_apple() ? "" : "-Wl,-rpath,'\$\$ORIGIN' -Wl,-z,origin"
82+
extra_ld = Sys.isapple() ? "" : "-Wl,-rpath,'\$\$ORIGIN' -Wl,-z,origin"
8383

8484
provides(Sources, URI("https://github.com/JuliaLang/openspecfun/archive/v$OSF_VERS.tar.gz"),
8585
openspecfun, unpacked_dir="openspecfun-$OSF_VERS")

0 commit comments

Comments
 (0)