aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCharlie Sharpsteen2012-04-18 10:00:17 -0700
committerCharlie Sharpsteen2012-04-18 10:00:17 -0700
commita2e8b543f16745025001790777770b190b5d9a64 (patch)
tree81da18d0eca509684c3fa5991af802bdb280b4d7
parent7cd8199170eef2d411b9ab05bb588e20690cfff1 (diff)
downloadhomebrew-a2e8b543f16745025001790777770b190b5d9a64.tar.bz2
OpenSSL: Clean up indentation
-rw-r--r--Library/Formula/openssl.rb11
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")