aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cloog.rb10
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