Skip to content

Commit

Permalink
Don't use binaries on non-Apple BSD (#341)
Browse files Browse the repository at this point in the history
  • Loading branch information
ararslan authored Nov 30, 2017
1 parent 0989784 commit dbba2bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dependencies.jl
Original file line number Diff line number Diff line change
Expand Up @@ -740,9 +740,9 @@ function check_system_handle!(ret,dep,handle)
end

# Default installation method
defaults = if Compat.Sys.isbsd()
defaults = if Compat.Sys.isapple()
[Binaries, PackageManager, SystemPaths, BuildProcess]
elseif Compat.Sys.islinux() && glibc_version === nothing # non-glibc
elseif Compat.Sys.isbsd() || (Compat.Sys.islinux() && glibc_version() === nothing) # non-glibc
[PackageManager, SystemPaths, BuildProcess]
elseif Compat.Sys.islinux() # glibc
[PackageManager, SystemPaths, Binaries, BuildProcess]
Expand Down

0 comments on commit dbba2bd

Please sign in to comment.