aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorXiyue Deng2013-09-08 01:48:06 -0700
committerXiyue Deng2013-09-08 01:48:06 -0700
commit308a32102ea54d38952ac06a4bf4b2bb69d3c196 (patch)
tree284a436b85c6672d2e8971d517d7c06622229d79 /Library/Formula
parent6fd425b45c02d474380b15ee20ee9cbf4cd4ae6d (diff)
downloadhomebrew-308a32102ea54d38952ac06a4bf4b2bb69d3c196.tar.bz2
Cloog: tightened dependency check.
* Explicitly request external gmp and isl as well as specifying their prefixes. * Enable verbose build log for better diagnosis.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/cloog.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Formula/cloog.rb b/Library/Formula/cloog.rb
index 3e0bd19d1..0336113d6 100644
--- a/Library/Formula/cloog.rb
+++ b/Library/Formula/cloog.rb
@@ -11,7 +11,11 @@ class Cloog < Formula
def install
system "./configure", "--disable-dependency-tracking",
+ "--disable-silent-rules",
"--prefix=#{prefix}",
+ "--with-gmp=system",
+ "--with-gmp-prefix=#{Formula.factory("gmp").opt_prefix}",
+ "--with-isl=system",
"--with-isl-prefix=#{Formula.factory("isl").opt_prefix}"
system "make install"
end