aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorShaun Jackman2013-08-29 16:50:11 -0700
committerMisty De Meo2013-08-29 20:47:18 -0700
commit6dabb7bc48d8bdf35534b3437fc924f2ff85b1ef (patch)
treef77af25764a7af8a1721234e03afc95f918a6e72 /Library
parent8073c822f6f5249a7deefc62cacf3c095b0d2dac (diff)
downloadhomebrew-6dabb7bc48d8bdf35534b3437fc924f2ff85b1ef.tar.bz2
universal_archs returns ArchitectureListExtension
Closes #22210. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library')
-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`