Skip to content

Commit

Permalink
Merge pull request #179051 from Homebrew/libslirp-meson
Browse files Browse the repository at this point in the history
libslirp: replace deprecated usage of `meson setup`
  • Loading branch information
BrewTestBot committed Jul 31, 2024
2 parents 2d024a8 + 1e49e1d commit 3481d76
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Formula/lib/libslirp.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ class Libslirp < Formula
depends_on "glib"

def install
system "meson", "build", "-Ddefault_library=both", *std_meson_args
system "ninja", "-C", "build", "install", "all"
system "meson", "setup", "build", "-Ddefault_library=both", *std_meson_args
system "meson", "compile", "-C", "build", "--verbose"
system "meson", "install", "-C", "build"
end

test do
Expand Down

0 comments on commit 3481d76

Please sign in to comment.