diff options
| author | Jack Nagel | 2014-08-09 17:48:18 -0500 |
|---|---|---|
| committer | Jack Nagel | 2014-08-09 17:50:53 -0500 |
| commit | 47a82b036e43e7119fb52123a908b3af8e3af76a (patch) | |
| tree | 945c2bf04ddb450c7ad0afaf6f8669288f6cf75b | |
| parent | 105db77fc08df7a8dc85dcef626ec82998207117 (diff) | |
| download | brew-47a82b036e43e7119fb52123a908b3af8e3af76a.tar.bz2 | |
Move tab creation outside of the debug loop
| -rw-r--r-- | Library/Homebrew/build.rb | 5 |
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 |
