diff options
Diffstat (limited to 'Library/Formula/lighttpd.rb')
| -rw-r--r-- | Library/Formula/lighttpd.rb | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/Library/Formula/lighttpd.rb b/Library/Formula/lighttpd.rb index 550ad6c2c..f52294c6e 100644 --- a/Library/Formula/lighttpd.rb +++ b/Library/Formula/lighttpd.rb @@ -9,9 +9,9 @@ class Lighttpd <Formula    depends_on 'pcre'    def install -    args = ["--prefix=#{prefix}", "--disable-dependency-tracking",  -            "--with-openssl", "--with-ldap"] -    system "./configure", *args +    system "./configure", "--disable-dependency-tracking", +                          "--prefix=#{prefix}", +                          "--with-openssl", "--with-ldap"      system "make install"    end  end | 
