diff options
| author | Jack Nagel | 2013-03-24 23:29:15 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-03-26 00:02:29 -0500 |
| commit | 9ddd0cd36bd579676ce08f3f7cc7fbf200b8d7e3 (patch) | |
| tree | b69250c23979a6879d77b658bcc838432ae5ee8b /Library/Formula/cloog.rb | |
| parent | f37333410aed582400346e7e52d71b6624c163e8 (diff) | |
| download | homebrew-9ddd0cd36bd579676ce08f3f7cc7fbf200b8d7e3.tar.bz2 | |
cloog: inline args
Diffstat (limited to 'Library/Formula/cloog.rb')
| -rw-r--r-- | Library/Formula/cloog.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Formula/cloog.rb b/Library/Formula/cloog.rb index d9357ad6b..7b094daac 100644 --- a/Library/Formula/cloog.rb +++ b/Library/Formula/cloog.rb @@ -10,13 +10,9 @@ class Cloog < Formula depends_on 'isl' def install - args = [ - "--disable-dependency-tracking", - "--prefix=#{prefix}", - "--with-isl-prefix=#{Formula.factory('isl').opt_prefix}" - ] - - system "./configure", *args + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}", + "--with-isl-prefix=#{Formula.factory("isl").opt_prefix}" system "make install" end |
