aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2014-08-14 18:10:05 +0100
committerMike McQuaid2014-08-14 18:10:05 +0100
commitfa636a81f702eb4053c257f008a73aee2434b3f6 (patch)
treeb7bf316d5b86928cd7c9be428d161610ce15dbe1 /Library/Formula
parent6476780cea394abd66c0b2405877cdf0cdbe93d2 (diff)
downloadhomebrew-fa636a81f702eb4053c257f008a73aee2434b3f6.tar.bz2
Revert "node: add optional icu4c dependency."
This reverts commit b859a5c6a2f8fdf1c660844a8d47a321b8ddea84.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/node.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb
index 07012b57f..a9159dbd0 100644
--- a/Library/Formula/node.rb
+++ b/Library/Formula/node.rb
@@ -23,11 +23,8 @@ class Node < Formula
option "enable-debug", "Build with debugger hooks"
option "without-npm", "npm will not be installed"
option "without-completion", "npm bash completion will not be installed"
- option "with-icu4c", "enable Intl support via ICU"
depends_on :python => :build
- depends_on "icu4c" => :optional
- depends_on "pkg-config" => :build if build.with? 'icu4c'
fails_with :llvm do
build 2326
@@ -41,7 +38,6 @@ class Node < Formula
def install
args = %W{--prefix=#{prefix} --without-npm}
args << "--debug" if build.include? "enable-debug"
- args << "--with-intl=system-icu" if build.with? "icu4c"
system "./configure", *args
system "make", "install"