aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2014-10-20 01:55:09 -0500
committerJack Nagel2014-10-20 01:55:41 -0500
commit06172591f244ee35055995b846115a6bb16720a5 (patch)
tree3ac8af9a18bcd2ad9492e3a12170f46e391cb989 /Library/Formula
parenta09e6fa65ed00eb07531d50b2059d7ccea2afa61 (diff)
downloadhomebrew-06172591f244ee35055995b846115a6bb16720a5.tar.bz2
mupdf: respect compiler selection
Fixes #33365.
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/mupdf.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/Library/Formula/mupdf.rb b/Library/Formula/mupdf.rb
index 8c1c6cf35..c73c0b18b 100644
--- a/Library/Formula/mupdf.rb
+++ b/Library/Formula/mupdf.rb
@@ -16,6 +16,10 @@ class Mupdf < Formula
depends_on :x11
def install
- system "make", "install", "build=release", "prefix=#{prefix}"
+ system "make", "install",
+ "build=release",
+ "verbose=yes",
+ "CC=#{ENV.cc}",
+ "prefix=#{prefix}"
end
end