diff options
| -rw-r--r-- | Library/Formula/openssl.rb | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/Library/Formula/openssl.rb b/Library/Formula/openssl.rb index f6813da48..d923ab6cf 100644 --- a/Library/Formula/openssl.rb +++ b/Library/Formula/openssl.rb @@ -9,11 +9,12 @@ class Openssl < Formula "The OpenSSL provided by Leopard (0.9.7) is too old for some software." def install - args = [ "./Configure", - "--prefix=#{prefix}", - "--openssldir=#{etc}/openssl", - "zlib-dynamic", "shared" - ] + args = %W[./Configure + --prefix=#{prefix} + --openssldir=#{etc}/openssl + zlib-dynamic + shared + ] args << (MacOS.prefer_64_bit? ? "darwin64-x86_64-cc" : "darwin-i386-cc") |
