Skip to content

Commit

Permalink
wireshark: Fix condition for disabling the wireshark binary
Browse files Browse the repository at this point in the history
Closes Homebrew/legacy-homebrew#27341.

Signed-off-by: Adam Vandenberg <[email protected]>
  • Loading branch information
jaimeMF authored and adamv committed Mar 9, 2014
1 parent 455499b commit 609f6c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Formula/wireshark.rb
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def install
"--with-ssl"]

args << "--disable-warnings-as-errors" if build.head?
args << "--disable-wireshark" if build.without? "x" or build.with? "qt"
args << "--disable-wireshark" if build.without?("x") && build.without?("qt")
args << "--disable-gtktest" if build.without? "x"
args << "--with-qt" if build.with? "qt"

Expand Down

0 comments on commit 609f6c3

Please sign in to comment.