diff options
| author | Jack Nagel | 2012-09-04 23:04:01 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-09-10 16:16:54 -0500 |
| commit | 6b8d25f2d21a3c19ecb0809d619999137cb94565 (patch) | |
| tree | 402f61e324fc981a56a2064bb0d4f5680ca135ed /Library/Formula/texi2html.rb | |
| parent | db74b9b4776aced4f4ac59076eebe10a98768f09 (diff) | |
| download | homebrew-6b8d25f2d21a3c19ecb0809d619999137cb94565.tar.bz2 | |
Clean up MacOS version method usage
The MacOS.version? family of methods (other than "leopard?") are poorly
defined and lead to confusing code. Replace them in formulae with more
explicit comparisons.
"MacOS.version" is a special version object that can be compared to
numerics, symbols, and strings using the standard Ruby comparison
methods.
The old methods were moved to compat when the version comparison code
was merged, and they must remain there "forever", but they should not be
used in new code.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/texi2html.rb')
| -rw-r--r-- | Library/Formula/texi2html.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/texi2html.rb b/Library/Formula/texi2html.rb index 701a9ed42..209baadbe 100644 --- a/Library/Formula/texi2html.rb +++ b/Library/Formula/texi2html.rb @@ -5,7 +5,7 @@ class Texi2html < Formula url 'http://download.savannah.gnu.org/releases/texi2html/texi2html-1.70.tar.gz' sha1 'b3472fb5ef80824177a56a1a37983c13497b23be' - keg_only :provided_by_osx unless MacOS.mountain_lion? + keg_only :provided_by_osx unless MacOS.version >= :mountain_lion def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}", |
