diff options
| author | David Höppner | 2010-02-22 11:47:43 +0100 | 
|---|---|---|
| committer | David Höppner | 2010-02-22 11:47:43 +0100 | 
| commit | b9d8d3a654e4b79d67c5f1c5030e282094a81b69 (patch) | |
| tree | 92e86faf13bb59d5979ef2fba5a1fc6db2fe842f /Library/Formula/haproxy.rb | |
| parent | 340cb0e6ef8c2e04bdb9179b31dcf6da54c3d0ea (diff) | |
| download | homebrew-b9d8d3a654e4b79d67c5f1c5030e282094a81b69.tar.bz2 | |
haproxy: use CC as linker
Got an error when linking with ld (x86_64 symbols not found).
Diffstat (limited to 'Library/Formula/haproxy.rb')
| -rw-r--r-- | Library/Formula/haproxy.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Formula/haproxy.rb b/Library/Formula/haproxy.rb index 3cf653342..a6ac7939d 100644 --- a/Library/Formula/haproxy.rb +++ b/Library/Formula/haproxy.rb @@ -9,8 +9,8 @@ class Haproxy <Formula      inreplace 'Makefile' do |contents|        contents.change_make_var! 'PREFIX', prefix        contents.change_make_var! 'DOCDIR', doc -      # use our CC, LD, CFLAGS and LDFLAGS -      contents.remove_make_var! %w[LDFLAGS CFLAGS CC LD] +      # use our CC, CFLAGS and LDFLAGS +      contents.remove_make_var! %w[LDFLAGS CFLAGS CC]      end      # We build generic since the Makefile.osx doesn't appear to work | 
