diff options
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/--env.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/--env.rb b/Library/Homebrew/cmd/--env.rb index 2f6e421a0..2a11d1e0b 100644 --- a/Library/Homebrew/cmd/--env.rb +++ b/Library/Homebrew/cmd/--env.rb @@ -9,8 +9,9 @@ module Homebrew extend self end def dump_build_env env + puts %["--use-clang" was specified] if ARGV.include? '--use-clang' puts %["--use-llvm" was specified] if ARGV.include? '--use-llvm' - puts "\"--use-gcc\" was specified" if ARGV.include? '--use-gcc' + puts %["--use-gcc" was specified] if ARGV.include? '--use-gcc' %w[ CC CXX LD ].each do |k| value = env[k] |
