Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: JRuby 1.0.1
-
Fix Version/s: JRuby 1.0.2, JRuby 1.1b1
-
Component/s: None
-
Labels:None
-
Environment:windows
-
Patch Submitted:Yes
-
Number of attachments :
Description
_jrubyvars.bat batch is broken on windows, it does not only add the jars in jruby/lib directory but all jars located in sub directories.
this is inconsistent with unix platforms and create issues with glassfish v3 integration.
if you replace
for /r "%JRUBY_HOME%\lib" %%i in (*.jar) do @call "%~dp0_jrubysetcp" %%i
with
for %%i in ("%JRUBY_HOME%\lib"*.jar) do @call "%~dp0_jrubysetcp" %%i
in _jrubyvars.bat
it works as expected...
Issue Links
| This issue relates to: | ||||
| JRUBY-1367 | rev 4315 changes to _jrubyvars.bat breaks jruby |
|
|
|
Excellent find Jerome, thank you! I will commit this to trunk and 1.0.