aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-24 16:42:21 -0700
committerAdam Vandenberg2013-08-24 16:42:29 -0700
commit98f5fa8dfe9af06d02a45f6388419c0d15d8f08f (patch)
treea4058be67c1ca8ad626c130aa000e91a5b9d570a /Library/Homebrew
parent756652c5ada848abed87ea66dcfbc69db0e66e6a (diff)
downloadhomebrew-98f5fa8dfe9af06d02a45f6388419c0d15d8f08f.tar.bz2
Fix const reference in mach
Fixes #22090.
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/mach.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/mach.rb b/Library/Homebrew/mach.rb
index d6870400f..6729e36fc 100644
--- a/Library/Homebrew/mach.rb
+++ b/Library/Homebrew/mach.rb
@@ -21,7 +21,7 @@ module ArchitectureListExtension
end
def ppc?
- (PPC_32BIT_ARCHS+PPC_64BIT_ARCHS).any? {|a| self.include? a}
+ (Hardware::CPU::PPC_32BIT_ARCHS+Hardware::CPU::PPC_64BIT_ARCHS).any? {|a| self.include? a}
end
def remove_ppc!