rounds up some stray underscores

This commit is contained in:
Spencer Russell 2018-08-16 14:19:00 -04:00
parent 3551896de1
commit 308e88b7cf

5
deps/build.jl vendored
View file

@ -1,5 +1,6 @@
using BinDeps using BinDeps
using Compat using Compat
using Compat.Sys: isapple, iswindows
@BinDeps.setup @BinDeps.setup
@ -13,12 +14,12 @@ provides(AptGet, "libportaudio2", libportaudio)
provides(Pacman, "portaudio", libportaudio) provides(Pacman, "portaudio", libportaudio)
@static if is_apple() @static if isapple()
using Homebrew using Homebrew
provides(Homebrew.HB, "portaudio", libportaudio) provides(Homebrew.HB, "portaudio", libportaudio)
end end
@static if is_windows() @static if iswindows()
using WinRPM using WinRPM
provides(WinRPM.RPM, "libportaudio2", libportaudio, os = :Windows) provides(WinRPM.RPM, "libportaudio2", libportaudio, os = :Windows)
end end