aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/os/mac/hardware.rb4
1 files changed, 3 insertions, 1 deletions
diff --git a/Library/Homebrew/os/mac/hardware.rb b/Library/Homebrew/os/mac/hardware.rb
index b0ac99822..1de4fb5a5 100644
--- a/Library/Homebrew/os/mac/hardware.rb
+++ b/Library/Homebrew/os/mac/hardware.rb
@@ -59,7 +59,9 @@ module MacCPUs
when 11
:g4e # PowerPC 7450
when 100
- :g5 # PowerPC 970
+ # This is the only 64-bit PPC CPU type, so it's useful
+ # to distinguish in `brew --config` output and in bottle tags
+ MacOS.prefer_64_bit? ? :g5_64 : :g5 # PowerPC 970
else
:dunno
end