aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git.rb
diff options
context:
space:
mode:
authorFlorian Kistner2011-12-02 00:20:54 +0100
committerJack Nagel2011-12-01 20:29:38 -0600
commit1300323b204a2463bae3364d4c8b52bb9dab10c9 (patch)
treeef342587bde08a1a0753f02df9e7a19474736d11 /Library/Formula/git.rb
parentfa1c5b912b17a9cafd669fe0c451e66c557008e9 (diff)
downloadhomebrew-1300323b204a2463bae3364d4c8b52bb9dab10c9.tar.bz2
git: remove CC assignment from Makefile
Closes #8923. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/git.rb')
-rw-r--r--Library/Formula/git.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/git.rb b/Library/Formula/git.rb
index d0e311aeb..8588beab0 100644
--- a/Library/Formula/git.rb
+++ b/Library/Formula/git.rb
@@ -31,7 +31,7 @@ class Git < Formula
ENV['BLK_SHA1']='1' if ARGV.include? '--with-blk-sha1'
inreplace "Makefile" do |s|
- s.remove_make_var! %w{CFLAGS LDFLAGS}
+ s.remove_make_var! %w{CC CFLAGS LDFLAGS}
end
system "make", "prefix=#{prefix}", "install"