
|
If you were logged in you would be able to see more operations.
|
|
|
| Severity: |
Minor
|
| Fixed in Change#: |
4,537
|
| Runtime: |
N/A
|
| Fix in hand: |
True
|
|
when from from Microscrod command shell, lzc gets a NoClassDef error.
The bug seems to originate in lzenv.bat, which generates a bogus looking CLASSPATH
A suggested fix is to use this alternate code in the script
for /f "usebackq delims=" %%d in (`dir /s /b "%LPS_HOME%\3rd-party\jars\dev\*.jar"`) do call :add %%~d
for /f "usebackq delims=" %%d in (`dir /s /b "%LPS_HOME%\WEB-INF\lib\*.jar"`) do call :add %%~d
that seems to work
|
|
Description
|
when from from Microscrod command shell, lzc gets a NoClassDef error.
The bug seems to originate in lzenv.bat, which generates a bogus looking CLASSPATH
A suggested fix is to use this alternate code in the script
for /f "usebackq delims=" %%d in (`dir /s /b "%LPS_HOME%\3rd-party\jars\dev\*.jar"`) do call :add %%~d
for /f "usebackq delims=" %%d in (`dir /s /b "%LPS_HOME%\WEB-INF\lib\*.jar"`) do call :add %%~d
that seems to work
|
Show » |
|