diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-14 15:31:30 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2011-11-14 15:31:30 +0100 | 
| commit | c956dbb0e57f15cb79728be74aad83defeada17a (patch) | |
| tree | 4855bbe2073381f14907b711d61e166948d141ec | |
| parent | 384c6fc88e02314bb628f817ec2b51f4c6ffcb3e (diff) | |
| download | zorglub-c956dbb0e57f15cb79728be74aad83defeada17a.zip zorglub-c956dbb0e57f15cb79728be74aad83defeada17a.tar.gz | |
fix typo RBConfig => RbConfig
| -rw-r--r-- | tasks/constants.rb | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/tasks/constants.rb b/tasks/constants.rb index 045ed42..8a7fdfa 100644 --- a/tasks/constants.rb +++ b/tasks/constants.rb @@ -27,19 +27,19 @@ if USE_RAKE_COMPILER      ENV['RUBY_CC_VERSION'] = '1.8.7:1.9.2'  end -LIBEXT = case RBConfig::CONFIG['host_os'].downcase +LIBEXT = case RbConfig::CONFIG['host_os'].downcase      when /darwin/          "dylib"      when /mswin|mingw/          "dll"      else -        RBConfig::CONFIG['DLEXT'] +        RbConfig::CONFIG['DLEXT']      end -CPU = case RBConfig::CONFIG['host_cpu'].downcase +CPU = case RbConfig::CONFIG['host_cpu'].downcase      when /i[3456]86/          # Darwin always reports i686, even when running in 64bit mode -        if RBConfig::CONFIG['host_os'] =~ /darwin/ && 0xfee1deadbeef.is_a?(Fixnum) +        if RbConfig::CONFIG['host_os'] =~ /darwin/ && 0xfee1deadbeef.is_a?(Fixnum)              "x86_64"          else          "i386" @@ -51,10 +51,10 @@ CPU = case RBConfig::CONFIG['host_cpu'].downcase      when /ppc|powerpc/          "powerpc"      else -        RBConfig::CONFIG['host_cpu'] +        RbConfig::CONFIG['host_cpu']      end -OS = case RBConfig::CONFIG['host_os'].downcase +OS = case RbConfig::CONFIG['host_os'].downcase      when /linux/          "linux"      when /darwin/ @@ -68,12 +68,12 @@ OS = case RBConfig::CONFIG['host_os'].downcase      when /mswin|mingw/          "win32"      else -        RBConfig::CONFIG['host_os'].downcase +        RbConfig::CONFIG['host_os'].downcase      end -CC=ENV['CC'] || RBConfig::CONFIG['CC'] || "gcc" +CC=ENV['CC'] || RbConfig::CONFIG['CC'] || "gcc" -GMAKE = RBConfig::CONFIG['host_os'].downcase =~ /bsd|solaris/ ? "gmake" : "make" +GMAKE = RbConfig::CONFIG['host_os'].downcase =~ /bsd|solaris/ ? "gmake" : "make"  DIFF = if WIN32 then 'diff.exe' | 
