aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/lzip.rb
diff options
context:
space:
mode:
authorMax Howell2010-02-20 11:53:51 +0000
committerMax Howell2010-02-20 12:12:51 +0000
commit0634c1c7c3049558051203c6d383c59484b1577b (patch)
tree17912dd6a73e6799d76d6a2b6ebf100c62e218fd /Library/Formula/lzip.rb
parent6a18e38883d2b80da78f51d452012ce443fee7de (diff)
downloadhomebrew-0634c1c7c3049558051203c6d383c59484b1577b.tar.bz2
ENV['CXX'] is no longer set, use ENV.cxx
Diffstat (limited to 'Library/Formula/lzip.rb')
-rw-r--r--Library/Formula/lzip.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/lzip.rb b/Library/Formula/lzip.rb
index b784cbf49..42dc63fab 100644
--- a/Library/Formula/lzip.rb
+++ b/Library/Formula/lzip.rb
@@ -6,7 +6,7 @@ class Lzip <Formula
md5 '9e1d7f4db5b953e9f75b8500ebe0d4c0'
def install
- system "./configure", "--prefix=#{prefix}", "CXX=#{ENV['CXX']}"
+ system "./configure", "--prefix=#{prefix}", "CXX=#{ENV.cxx}"
system "make check"
system "make install"
end