aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-03 17:04:32 -0500
committerJack Nagel2013-06-03 17:04:32 -0500
commit308fd9c05f4ca0d7edbf09975c12f52f2994b1c7 (patch)
treed88ab7d46ff55716fd7ee6e990700076f582d9ae /Library
parent9d7c711dd677e187cf9df2da0a6faddbe46c5a7e (diff)
downloadhomebrew-308fd9c05f4ca0d7edbf09975c12f52f2994b1c7.tar.bz2
boost149: revert change to icu option
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/boost149.rb6
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