aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/extend
diff options
context:
space:
mode:
authorJack Nagel2013-12-02 01:16:50 -0600
committerJack Nagel2013-12-02 01:16:50 -0600
commitde3c7d94bfca0f6f903829a46b6c02427c4b29cf (patch)
tree9c78882620ce3648396f8f350bf125f77fd7b166 /Library/Homebrew/extend
parentb0ebf9288ea60f09783217e8971b8c6fbb530397 (diff)
downloadhomebrew-de3c7d94bfca0f6f903829a46b6c02427c4b29cf.tar.bz2
Fix typo
Diffstat (limited to 'Library/Homebrew/extend')
-rw-r--r--Library/Homebrew/extend/ENV/shared.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/extend/ENV/shared.rb b/Library/Homebrew/extend/ENV/shared.rb
index a828d391f..71b5107ee 100644
--- a/Library/Homebrew/extend/ENV/shared.rb
+++ b/Library/Homebrew/extend/ENV/shared.rb
@@ -8,7 +8,7 @@ module SharedEnvExtension
GNU_GCC_VERSIONS = (3..9)
GNU_GCC_REGEXP = /gcc-(4\.[3-9])/
- COMPLER_ALIASES = {'gcc' => 'gcc-4.2', 'llvm' => 'llvm-gcc'}
+ COMPILER_ALIASES = {'gcc' => 'gcc-4.2', 'llvm' => 'llvm-gcc'}
COMPILER_SYMBOL_MAP = { 'gcc-4.0' => :gcc_4_0,
'gcc-4.2' => :gcc,
'llvm-gcc' => :llvm,
@@ -104,7 +104,7 @@ module SharedEnvExtension
elsif ARGV.include? '--use-clang'
:clang
elsif self['HOMEBREW_CC']
- cc = COMPLER_ALIASES.fetch(self['HOMEBREW_CC'], self['HOMEBREW_CC'])
+ cc = COMPILER_ALIASES.fetch(self['HOMEBREW_CC'], self['HOMEBREW_CC'])
COMPILER_SYMBOL_MAP.fetch(cc) { MacOS.default_compiler }
else
MacOS.default_compiler