Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Fixes #14571; clisp superenv issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mxcl authored and halloleo committed Sep 14, 2012
1 parent b793aad commit ad84bbc
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions Library/Formula/clisp.rb
Expand Up @@ -36,10 +36,7 @@ def install
# Multiple -O options will be in the generated Makefile,
# make Homebrew's the last such option so it's effective.
inreplace "Makefile" do |s|
cf = s.get_make_var("CFLAGS")
cf.gsub! ENV['CFLAGS'], ''
cf += ' '+ENV['CFLAGS']
s.change_make_var! 'CFLAGS', cf
s.change_make_var! 'CFLAGS', "#{s.get_make_var('CFLAGS')} #{ENV['CFLAGS']}"
end

# The ulimit must be set, otherwise `make` will fail and tell you to do so
Expand Down

0 comments on commit ad84bbc

Please sign in to comment.