diff options
| author | Sebastian Staudt | 2013-03-23 20:15:51 +0100 | 
|---|---|---|
| committer | Misty De Meo | 2013-03-23 14:23:03 -0500 | 
| commit | 34357dac5276377ac10d8f90a98c7ed1a01fadd5 (patch) | |
| tree | 7faa57cd742fbc8743b3b0306abb922d95023927 /Library/Homebrew/os/linux/hardware.rb | |
| parent | e7f66519dc6881f49e594ddb2fae857580c2c033 (diff) | |
| download | homebrew-34357dac5276377ac10d8f90a98c7ed1a01fadd5.tar.bz2 | |
LinuxCPUs: Fix method alias
Closes #18683.
Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
Diffstat (limited to 'Library/Homebrew/os/linux/hardware.rb')
| -rw-r--r-- | Library/Homebrew/os/linux/hardware.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/os/linux/hardware.rb b/Library/Homebrew/os/linux/hardware.rb index 9dc454956..433092c45 100644 --- a/Library/Homebrew/os/linux/hardware.rb +++ b/Library/Homebrew/os/linux/hardware.rb @@ -16,7 +16,7 @@ module LinuxCPUs    def family      :dunno    end -  alias_method :intel_family, :cpu_family +  alias_method :intel_family, :family    def cores      `grep -c ^processor /proc/cpuinfo`.to_i  | 
