diff options
| author | Jack Nagel | 2012-05-17 15:17:07 -0500 |
|---|---|---|
| committer | Jack Nagel | 2012-05-17 15:17:42 -0500 |
| commit | d3aac565181788d19926fe25b143bddb44bcd721 (patch) | |
| tree | 172f21e6a74c78de6d284d6a6f2bc1e6c1229444 /Library | |
| parent | b98bf0861971edefe96ac34f1746599a3eb5775e (diff) | |
| download | homebrew-d3aac565181788d19926fe25b143bddb44bcd721.tar.bz2 | |
pdf2json: use the right compiler
Fixes #12294.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/pdf2json.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/pdf2json.rb b/Library/Formula/pdf2json.rb index c63b3a12c..0a5b9e697 100644 --- a/Library/Formula/pdf2json.rb +++ b/Library/Formula/pdf2json.rb @@ -12,7 +12,7 @@ class Pdf2json < Formula # Fix manpage install location. See: # http://code.google.com/p/pdf2json/issues/detail?id=2 inreplace "Makefile", "/man/", "/share/man/" - system "make" + system "make", "CC=#{ENV.cc}", "CXX=#{ENV.cxx}" system "make install" end end |
