diff options
| author | Jack Nagel | 2013-06-03 17:04:32 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-06-03 17:04:32 -0500 |
| commit | 308fd9c05f4ca0d7edbf09975c12f52f2994b1c7 (patch) | |
| tree | d88ab7d46ff55716fd7ee6e990700076f582d9ae /Library | |
| parent | 9d7c711dd677e187cf9df2da0a6faddbe46c5a7e (diff) | |
| download | homebrew-308fd9c05f4ca0d7edbf09975c12f52f2994b1c7.tar.bz2 | |
boost149: revert change to icu option
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/boost149.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/boost149.rb b/Library/Formula/boost149.rb index c1c41a2d5..bf9c4659e 100644 --- a/Library/Formula/boost149.rb +++ b/Library/Formula/boost149.rb @@ -23,11 +23,11 @@ class Boost149 < Formula option :universal option 'with-mpi', 'Enable MPI support' - option 'with-icu4c', 'Build regexp engine with icu support' + option 'with-icu', 'Build regexp engine with icu support' depends_on :python => :recommended depends_on UniversalPython if build.universal? and build.with? "python" - depends_on "icu4c" => :optional + depends_on "icu4c" if build.with? 'icu' depends_on MPIDependency.new(:cc, :cxx) if build.with? "mpi" fails_with :llvm do @@ -56,7 +56,7 @@ class Boost149 < Formula # we specify libdir too because the script is apparently broken bargs = ["--prefix=#{prefix}", "--libdir=#{lib}"] - if build.with? 'icu4c' + if build.with? 'icu' icu4c_prefix = Formula.factory('icu4c').opt_prefix bargs << "--with-icu=#{icu4c_prefix}" else |
