diff options
| -rw-r--r-- | Library/Formula/node.rb | 8 | 
1 files changed, 0 insertions, 8 deletions
diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb index 7f2a27d13..e884c7deb 100644 --- a/Library/Formula/node.rb +++ b/Library/Formula/node.rb @@ -53,11 +53,9 @@ class Node < Formula    option 'enable-debug', 'Build with debugger hooks'    option 'without-npm', 'npm will not be installed' -  option 'with-shared-libs', 'Use Homebrew V8 and system OpenSSL, zlib'    depends_on NpmNotInstalled unless build.without? 'npm'    depends_on PythonVersion -  depends_on 'v8' if build.with? 'shared-libs'    fails_with :llvm do      build 2326 @@ -69,12 +67,6 @@ class Node < Formula    def install      args = %W{--prefix=#{prefix}} -    if build.with? 'shared-libs' -      args << '--shared-openssl' unless MacOS.version == :leopard -      args << '--shared-v8' -      args << '--shared-zlib' -    end -      args << "--debug" if build.include? 'enable-debug'      args << "--without-npm" if build.include? 'without-npm'  | 
