aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorShaun Jackman2013-08-29 16:50:11 -0700
committerMisty De Meo2013-08-29 20:47:18 -0700
commit774cd8b68be975107cead527c15971f48754a136 (patch)
tree522b64e5b033c8849bc52aed2dd66d20f8fd24a2 /Library/Homebrew
parentfb50be432a3231af65af4fa2a70c122f93d55c66 (diff)
downloadbrew-774cd8b68be975107cead527c15971f48754a136.tar.bz2
universal_archs returns ArchitectureListExtension
Closes Homebrew/homebrew#22210. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/os/linux/hardware.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/os/linux/hardware.rb b/Library/Homebrew/os/linux/hardware.rb
index 9f16ffd1f..4e84d31b1 100644
--- a/Library/Homebrew/os/linux/hardware.rb
+++ b/Library/Homebrew/os/linux/hardware.rb
@@ -5,7 +5,7 @@ module LinuxCPUs
# Linux supports x86 only, and universal archs do not apply
def arch_32_bit; :i386; end
def arch_64_bit; :x86_64; end
- def universal_archs; []; end
+ def universal_archs; [].extend ArchitectureListExtension; end
def type
@cpu_type ||= case `uname -m`