Details
-
Bug
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
1.3
-
None
-
Mac OS X
Description
The File.normalize_path function introduced in rev 634463 is broken on Mac. The code:
Config::CONFIG["host_os"] =~ /win/i
is not sufficient to detect Windows, because on Mac OS X:
$ ruby -rrbconfig -e 'puts Config::CONFIG["host_os"]' darwin9.0 $ jruby -rrbconfig -e 'puts Config::CONFIG["host_os"]' darwin
Attached is a patch to fix.