bgpdump: fix build for Linux (#82940)

master
Michael Cho 2021-08-07 22:43:50 -07:00 committed by GitHub
parent 1a49f6009e
commit 56652c80a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,9 @@ class Bgpdump < Formula
depends_on "autoconf" => :build
uses_from_macos "bzip2"
uses_from_macos "zlib"
def install
system "./bootstrap.sh"
system "./configure", "--disable-debug",
@ -31,6 +34,6 @@ class Bgpdump < Formula
end
test do
system "#{bin}/bgpdump", "-T"
system bin/"bgpdump", "-T"
end
end