Use formula patches accessor

This commit is contained in:
Jack Nagel 2015-01-22 17:03:54 -05:00
parent 165b47c0e6
commit 7978209469

View File

@ -387,7 +387,7 @@ class Formula
def patch def patch
ohai "Patching" ohai "Patching"
active_spec.patches.each(&:apply) patchlist.each(&:apply)
end end
# yields self with current working directory set to the uncompressed tarball # yields self with current working directory set to the uncompressed tarball
@ -761,9 +761,9 @@ class Formula
active_spec.add_legacy_patches(patches) active_spec.add_legacy_patches(patches)
return if patchlist.empty? 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) patch.verify_download_integrity(patch.fetch)
end end
end end