diff options
| -rw-r--r-- | Library/Homebrew/os/linux/hardware.rb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Homebrew/os/linux/hardware.rb b/Library/Homebrew/os/linux/hardware.rb index b323cbab5..8c7f0d401 100644 --- a/Library/Homebrew/os/linux/hardware.rb +++ b/Library/Homebrew/os/linux/hardware.rb @@ -4,9 +4,7 @@ module LinuxCPUs def type @cpu_type ||= case `uname -m` - when /x86_64/ - :intel - when /i386/ + when /i[3-6]86/, /x86_64/ :intel else :dunno |
