diff options
| author | Mike McQuaid | 2014-10-19 14:41:25 +0100 |
|---|---|---|
| committer | Mike McQuaid | 2014-10-19 14:41:25 +0100 |
| commit | fa174362b6c6c021a74a1730ec208a23572aaead (patch) | |
| tree | 7386b232fb4ad33afae1b4bdf3280a81be797cf3 /Library/Formula | |
| parent | 82cabe6dfcfc1bd847688eb2dce19aab26d0076f (diff) | |
| download | homebrew-fa174362b6c6c021a74a1730ec208a23572aaead.tar.bz2 | |
Fix incorrect deprecated_option syntax.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/mplayer.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/sqsh.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/mplayer.rb b/Library/Formula/mplayer.rb index aabd38eed..56f423b36 100644 --- a/Library/Formula/mplayer.rb +++ b/Library/Formula/mplayer.rb @@ -36,7 +36,7 @@ class Mplayer < Formula depends_on 'libcaca' => :optional depends_on :x11 => :optional - deprecated_option "with-x", "with-x11" + deprecated_option "with-x" => "with-x11" if build.with? 'osd' or build.with? 'x11' # These are required for the OSD. We can get them from X11, or we can diff --git a/Library/Formula/sqsh.rb b/Library/Formula/sqsh.rb index 2440ab84a..ca27c43ff 100644 --- a/Library/Formula/sqsh.rb +++ b/Library/Formula/sqsh.rb @@ -11,7 +11,7 @@ class Sqsh < Formula depends_on 'freetds' depends_on 'readline' - deprecated_option "enable-x", "with-x11" + deprecated_option "enable-x" => "with-x11" # this patch fixes detection of freetds being instaled, it was reported # upstream via email and should be fixed in the next release |
