Add PKG_CONFIG_PATH to env dump, since brew modifies it.

This commit is contained in:
Adam Vandenberg 2010-04-01 09:58:16 -07:00
parent 0b56c62bf5
commit e05c728e45

View File

@ -71,7 +71,7 @@ end
def dump_build_env env def dump_build_env env
puts "\"--use-llvm\" was specified" if ARGV.include? '--use-llvm' puts "\"--use-llvm\" was specified" if ARGV.include? '--use-llvm'
%w[CC CXX LD CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MAKEFLAGS HOMEBREW_USE_LLVM].each do |k| %w[CC CXX LD CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MAKEFLAGS PKG_CONFIG_PATH HOMEBREW_USE_LLVM].each do |k|
puts "#{k}: #{env[k]}" puts "#{k}: #{env[k]}"
end end
end end