We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57c72e commit 1c33ee1Copy full SHA for 1c33ee1
deps/scratch.jl
@@ -48,12 +48,12 @@ if libm == "libopenlibm"
48
end
49
for f in readdir(joinpath(openlibm_src, "include"))
50
cp(joinpath(openlibm_src, "include", f), joinpath(openlibm_include, f),
51
- remove_destination=true, follow_symlinks=true)
+ force=true, follow_symlinks=true)
52
53
for f in readdir(joinpath(openlibm_src, "src"))
54
if endswith(f, ".h")
55
cp(joinpath(openlibm_src, "src", f), joinpath(openlibm_include, f),
56
57
58
59
else
@@ -79,7 +79,7 @@ elseif Sys.ARCH === :x86_64
79
fc *= " -m64"
80
81
82
-extra_ld = Sys.is_apple() ? "" : "-Wl,-rpath,'\$\$ORIGIN' -Wl,-z,origin"
+extra_ld = Sys.isapple() ? "" : "-Wl,-rpath,'\$\$ORIGIN' -Wl,-z,origin"
83
84
provides(Sources, URI("https://github.com/JuliaLang/openspecfun/archive/v$OSF_VERS.tar.gz"),
85
openspecfun, unpacked_dir="openspecfun-$OSF_VERS")
0 commit comments