diff options
| author | Alyssa Ross | 2016-09-05 22:13:55 +0100 |
|---|---|---|
| committer | Alyssa Ross | 2016-09-05 22:13:55 +0100 |
| commit | c58bbdc2138d2eb21ab7ea499beb6994a01891c4 (patch) | |
| tree | 927e5d31957a3c0a91141f038396d6c7201cbb12 /Library | |
| parent | ba10ce70bd36cbdc05a574f2227093da0ab7f470 (diff) | |
| download | brew-c58bbdc2138d2eb21ab7ea499beb6994a01891c4.tar.bz2 | |
Formula#specified_path
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula.rb | 5 | ||||
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index 90e6b2212..cc26a492e 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -226,6 +226,11 @@ class Formula public + # The path that was specified to find/install this formula. + def specified_path + alias_path || path + end + # Is the currently active {SoftwareSpec} a {#stable} build? # @private def stable? diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index ebcc3d4da..19c7838b3 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -589,7 +589,7 @@ class FormulaInstaller -I #{HOMEBREW_LOAD_PATH} -- #{HOMEBREW_LIBRARY_PATH}/build.rb - #{formula.alias_path || formula.path} + #{formula.specified_path} ].concat(build_argv) Sandbox.print_sandbox_message if Sandbox.formula?(formula) |
