aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-01-22 17:03:54 -0500
committerJack Nagel2015-01-22 17:03:54 -0500
commit797820946922d8c043f320adeb4cbaa88abbfcd4 (patch)
treee7c0e2eac35be51313adc13233c58e399edf1d1f /Library
parent165b47c0e68499ffbd58c0c2cf79bd6d304e475f (diff)
downloadbrew-797820946922d8c043f320adeb4cbaa88abbfcd4.tar.bz2
Use formula patches accessor
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index f953c087d..2fe8a9eb8 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -387,7 +387,7 @@ class Formula
def patch
ohai "Patching"
- active_spec.patches.each(&:apply)
+ patchlist.each(&:apply)
end
# yields self with current working directory set to the uncompressed tarball
@@ -761,9 +761,9 @@ class Formula
active_spec.add_legacy_patches(patches)
return if patchlist.empty?
- active_spec.patches.grep(DATAPatch) { |p| p.path = path }
+ patchlist.grep(DATAPatch) { |p| p.path = path }
- active_spec.patches.select(&:external?).each do |patch|
+ patchlist.select(&:external?).each do |patch|
patch.verify_download_integrity(patch.fetch)
end
end