aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/build.rb
diff options
context:
space:
mode:
authorJack Nagel2014-08-09 17:48:18 -0500
committerJack Nagel2014-08-09 17:50:53 -0500
commit47a82b036e43e7119fb52123a908b3af8e3af76a (patch)
tree945c2bf04ddb450c7ad0afaf6f8669288f6cf75b /Library/Homebrew/build.rb
parent105db77fc08df7a8dc85dcef626ec82998207117 (diff)
downloadbrew-47a82b036e43e7119fb52123a908b3af8e3af76a.tar.bz2
Move tab creation outside of the debug loop
Diffstat (limited to 'Library/Homebrew/build.rb')
-rw-r--r--Library/Homebrew/build.rb5
1 files changed, 3 insertions, 2 deletions
diff --git a/Library/Homebrew/build.rb b/Library/Homebrew/build.rb
index ff35b797a..8b50a3b68 100644
--- a/Library/Homebrew/build.rb
+++ b/Library/Homebrew/build.rb
@@ -163,8 +163,6 @@ class Build
begin
f.install
- stdlibs = detect_stdlibs
- Tab.create(f, ENV.compiler, stdlibs.first, f.build).write
rescue Exception => e
if ARGV.debug?
debrew e, f
@@ -173,6 +171,9 @@ class Build
end
end
+ stdlibs = detect_stdlibs
+ Tab.create(f, ENV.compiler, stdlibs.first, f.build).write
+
# Find and link metafiles
f.prefix.install_metafiles Pathname.pwd
end