From 5d8149ddfb36c4771cd1fca67d044c984b1c4c06 Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Thu, 8 Oct 2015 15:48:22 +0100 Subject: [PATCH] pyqt: style nits Closes Homebrew/homebrew#44743. Signed-off-by: Dominyk Tiller --- Formula/pyqt.rb | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/Formula/pyqt.rb b/Formula/pyqt.rb index ac0879f615..7224e977bb 100644 --- a/Formula/pyqt.rb +++ b/Formula/pyqt.rb @@ -28,10 +28,12 @@ class Pyqt < Formula Language::Python.each_python(build) do |python, version| ENV.append_path "PYTHONPATH", "#{Formula["sip"].opt_lib}/python#{version}/site-packages" - args = ["--confirm-license", - "--bindir=#{bin}", - "--destdir=#{lib}/python#{version}/site-packages", - "--sipdir=#{share}/sip"] + args = %W[ + --confirm-license + --bindir=#{bin} + --destdir=#{lib}/python#{version}/site-packages + --sipdir=#{share}/sip + ] # We need to run "configure.py" so that pyqtconfig.py is generated, which # is needed by QGIS, PyQWT (and many other PyQt interoperable @@ -66,7 +68,7 @@ class Pyqt < Formula system python, "configure-ng.py", *args system "make" system "make", "install" - system "make", "clean" # for when building against multiple Pythons + system "make", "clean" # for when building against multiple Pythons end end