aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/epstool.rb
diff options
context:
space:
mode:
authorElliot Saba2012-08-14 15:08:47 -0700
committerJack Nagel2012-08-14 21:23:15 -0500
commitf5990c4d6736ea73fe52565c548b4f8f8f79cd6a (patch)
treec91aeb6185d33701b811e06491b84370e815ac50 /Library/Formula/epstool.rb
parent8ff4773761503f3ad0a4e10bd50d185e9d62f823 (diff)
downloadhomebrew-f5990c4d6736ea73fe52565c548b4f8f8f79cd6a.tar.bz2
epstool: use the right compiler
Closes #14188. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/epstool.rb')
-rw-r--r--Library/Formula/epstool.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/epstool.rb b/Library/Formula/epstool.rb
index 8f00e40ca..4e4a5a1d0 100644
--- a/Library/Formula/epstool.rb
+++ b/Library/Formula/epstool.rb
@@ -8,6 +8,7 @@ class Epstool < Formula
def install
system "make", "install",
"EPSTOOL_ROOT=#{prefix}",
- "EPSTOOL_MANDIR=#{man}"
+ "EPSTOOL_MANDIR=#{man}",
+ "CC=#{ENV.cc}"
end
end