Skip to content

Commit

Permalink
Re-fixing JRUBY-4352: Rbconfig's Config::CONFIG provides wrong name f…
Browse files Browse the repository at this point in the history
…or Windows 2008 Server, based on input from Rakesh Arora. (See 07fb757.)
  • Loading branch information
BanzaiMan authored and enebo committed Dec 2, 2010
1 parent e34fde6 commit 8d69a1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/jruby/libraries/RbConfigLibrary.java
Expand Up @@ -78,7 +78,7 @@ public class RbConfigLibrary implements Library {
RUBY_OS_NAMES.put("Windows 2003", RUBY_WIN32);
RUBY_OS_NAMES.put("Windows Vista", RUBY_WIN32);
RUBY_OS_NAMES.put("Windows 7", RUBY_WIN32);
RUBY_OS_NAMES.put("Windows 2008 Server", RUBY_WIN32);
RUBY_OS_NAMES.put("Windows Server 2008", RUBY_WIN32);
RUBY_OS_NAMES.put("Solaris", RUBY_SOLARIS);
RUBY_OS_NAMES.put("FreeBSD", RUBY_FREEBSD);
RUBY_OS_NAMES.put("AIX", RUBY_AIX);
Expand Down

0 comments on commit 8d69a1e

Please sign in to comment.