diff options
| author | Adam Vandenberg | 2010-06-04 18:57:28 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-06-04 18:57:28 -0700 |
| commit | a90c2fdd6cb17642d1b9d41d4e06a524eb008352 (patch) | |
| tree | 7f68a2ae4bda7eacb0dd6c6e46af3b5cb11d53ec /Library/Formula | |
| parent | 2c88edaa0ce404d4821ede7736f24cdb8ec2d53c (diff) | |
| download | homebrew-a90c2fdd6cb17642d1b9d41d4e06a524eb008352.tar.bz2 | |
ppl - fix configure args
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/ppl.rb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/Library/Formula/ppl.rb b/Library/Formula/ppl.rb index c040e9c94..f9abbac93 100644 --- a/Library/Formula/ppl.rb +++ b/Library/Formula/ppl.rb @@ -8,14 +8,9 @@ class Ppl <Formula depends_on 'gmp' def install - configure_args = [ - "--prefix=#{prefix}", - "--disable-debug", - "--disable-dependency-tracking", - "--enable-optimization=sspeed", - ] - - system "./configure", *args + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--enable-optimization=sspeed" system "make install" end end |
