aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2010-04-01 09:58:16 -0700
committerAdam Vandenberg2010-04-01 09:58:16 -0700
commite05c728e456d2809ef27559918b37c33e9051a41 (patch)
treea2e1c77702ea0a4ec4c86cb6bf35dc4f9a570092
parent0b56c62bf50c1291f0259aa2ea9ff86afe826c0b (diff)
downloadbrew-e05c728e456d2809ef27559918b37c33e9051a41.tar.bz2
Add PKG_CONFIG_PATH to env dump, since brew modifies it.
-rwxr-xr-xbin/brew2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/brew b/bin/brew
index ffecdfd96..8668b69e7 100755
--- a/bin/brew
+++ b/bin/brew
@@ -71,7 +71,7 @@ end
def dump_build_env env
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]}"
end
end