Skip to content

Commit

Permalink
Merge pull request Homebrew#178808 from Homebrew/usbredir-meson
Browse files Browse the repository at this point in the history
usbredir: replace deprecated usage of `meson setup`
  • Loading branch information
BrewTestBot authored Jul 29, 2024
2 parents 9dbd372 + f1fbe0a commit c8ff377
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Formula/u/usbredir.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class Usbredir < Formula
depends_on "libusb"

def install
system "meson", *std_meson_args, ".", "build"
system "ninja", "-C", "build", "-v"
system "ninja", "-C", "build", "install"
system "meson", "setup", "build", *std_meson_args
system "meson", "compile", "-C", "build", "--verbose"
system "meson", "install", "-C", "build"
end

test do
Expand Down

0 comments on commit c8ff377

Please sign in to comment.