aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Nagel2015-02-23 21:38:36 -0500
committerJack Nagel2015-02-23 21:38:36 -0500
commitb1c7b8caf9f2d34556ce7f6ca29e11171336d968 (patch)
tree673c275961254d38aa8566a0e14f4a24b6919e25
parent9b341f8d858bf7b3131c9f73c8de146c60be7858 (diff)
downloadhomebrew-b1c7b8caf9f2d34556ce7f6ca29e11171336d968.tar.bz2
Define Hardware::CPU.features on the base module
-rw-r--r--Library/Homebrew/hardware.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb
index a47de5247..81bea766c 100644
--- a/Library/Homebrew/hardware.rb
+++ b/Library/Homebrew/hardware.rb
@@ -38,6 +38,10 @@ class Hardware
def ppc?
type == :ppc
end
+
+ def features
+ []
+ end
end
if OS.mac?