aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Homebrew/brewkit.rb6
-rwxr-xr-xbin/brew6
2 files changed, 6 insertions, 6 deletions
diff --git a/Library/Homebrew/brewkit.rb b/Library/Homebrew/brewkit.rb
index 4a20c1f84..45b216ec0 100644
--- a/Library/Homebrew/brewkit.rb
+++ b/Library/Homebrew/brewkit.rb
@@ -173,12 +173,6 @@ public
Dir.chdir tmp do
Dir.chdir uncompress(tgz) do
yield self
- if caveats
- ohai "Caveats"
- puts caveats
- end
- #TODO copy changelog or CHANGES file to pkg root,
- #TODO maybe README, etc. to versioned root
end
end
rescue Interrupt, RuntimeError
diff --git a/bin/brew b/bin/brew
index 9acc034ee..36cc44353 100755
--- a/bin/brew
+++ b/bin/brew
@@ -226,8 +226,14 @@ begin
o.prefix.mkpath
o.brew { o.install }
ohai 'Finishing up'
+ #TODO copy changelog or CHANGES file to pkg root,
+ #TODO maybe README, etc. to versioned root
o.clean
ln name
+ if o.caveats
+ ohai "Caveats"
+ puts o.caveats
+ end
puts "#{o.prefix}: "+abv(name)+", built in #{Time.now - beginning} seconds"
end
when 'ln'