aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-10-19 19:06:03 -0700
committerAdam Vandenberg2012-10-19 19:06:03 -0700
commit8eeb574ca37943bcb2f51ff39d11d5958bb0d95d (patch)
treef8e62a0a1765b1a327b4817c59c15c45cfa5596b /Library
parentfd1dc3b5d573bb0dbffefd970dcca4b4281b9c0c (diff)
downloadhomebrew-8eeb574ca37943bcb2f51ff39d11d5958bb0d95d.tar.bz2
python3: style nits
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/python3.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Formula/python3.rb b/Library/Formula/python3.rb
index f4d3218a7..9f1b3f2cf 100644
--- a/Library/Formula/python3.rb
+++ b/Library/Formula/python3.rb
@@ -57,12 +57,12 @@ class Python3 < Formula
ENV['PYTHONPATH'] = nil
ENV['PYTHONHOME'] = nil
- args = %W[--prefix=#{prefix}
- --enable-ipv6
- --datarootdir=#{share}
- --datadir=#{share}
- --enable-framework=#{prefix}/Frameworks
- ]
+ args = %W[
+ --prefix=#{prefix}
+ --enable-ipv6
+ --datarootdir=#{share}
+ --datadir=#{share}
+ --enable-framework=#{prefix}/Frameworks]
args << '--without-gcc' if ENV.compiler == :clang