diff options
| author | Mike McQuaid | 2014-12-27 16:00:21 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-12-27 16:31:44 +0000 |
| commit | 70d5532f40a44efba0087308d5de8e0e576463b8 (patch) | |
| tree | 5c99970926d2552e65356409c93d27ba1cbcc32a | |
| parent | 8ddfefae03ce424de56f9530c1f7299b63ff0fea (diff) | |
| download | homebrew-70d5532f40a44efba0087308d5de8e0e576463b8.tar.bz2 | |
dnsmasq: fix strict audit failures.
| -rw-r--r-- | Library/Formula/dnsmasq.rb | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/dnsmasq.rb b/Library/Formula/dnsmasq.rb index cb8f7aa80..1d813dc56 100644 --- a/Library/Formula/dnsmasq.rb +++ b/Library/Formula/dnsmasq.rb @@ -1,5 +1,3 @@ -require "formula" - class Dnsmasq < Formula homepage "http://www.thekelleys.org.uk/dnsmasq/doc.html" url "http://www.thekelleys.org.uk/dnsmasq/dnsmasq-2.72.tar.gz" @@ -78,4 +76,8 @@ class Dnsmasq < Formula </plist> EOS end + + test do + system "#{bin}/dnsmasq", "--test" + end end |
