jpeg-turbo: split args onto multiple lines
This commit is contained in:
parent
a3b46d030a
commit
f6d91ce1d9
1 changed files with 6 additions and 1 deletions
|
@ -27,7 +27,12 @@ class JpegTurbo < Formula
|
|||
|
||||
def install
|
||||
cp Dir["#{Formula["libtool"].opt_share}/libtool/*/config.{guess,sub}"], buildpath
|
||||
args = %W[--disable-dependency-tracking --prefix=#{prefix} --with-jpeg8 --mandir=#{man}]
|
||||
args = %W[
|
||||
--disable-dependency-tracking
|
||||
--prefix=#{prefix}
|
||||
--with-jpeg8
|
||||
--mandir=#{man}
|
||||
]
|
||||
|
||||
system "autoreconf", "-fvi" if build.head?
|
||||
system "./configure", *args
|
||||
|
|
Loading…
Reference in a new issue