aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/normalize.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/normalize.rb b/Library/Formula/normalize.rb
index 57132de15..f2e29a81b 100644
--- a/Library/Formula/normalize.rb
+++ b/Library/Formula/normalize.rb
@@ -7,7 +7,7 @@ class Normalize < Formula
option 'without-mad', 'Compile without MP3 support'
- depends_on 'mad' unless build.include? 'without-mad'
+ depends_on 'mad' => :recommended
def install
args = %W[
@@ -16,7 +16,7 @@ class Normalize < Formula
--prefix=#{prefix}
--mandir=#{man}
]
- args << "--without-mad" if build.include? "without-mad"
+ args << "--without-mad" if build.without? "mad"
system "./configure", *args
system "make install"