Message5440

Author otmarhumbel
Recipients TimVukman, jaraco, otmarhumbel, took
Date 2010-01-15.23:56:34
SpamBayes Score 1.0057381e-05
Marked as misclassified No
Message-id <1263599794.23.0.773512058613.issue1330@psf.upfronthosting.co.za>
In-reply-to
Content
A possible solution could be to replace

:argsDone
if not defined _BOOT_CP (
  if defined CLASSPATH (
    set CLASSPATH=%_CP:"=%;%CLASSPATH:"=%
  ) else (
    set CLASSPATH=%_CP:"=%
  )
)

with

:argsDone
rem do not use 'if () else ()' because this does not work with CLASSPATH containing (x86)
if defined _BOOT_CP goto fullCmd
if defined CLASSPATH goto classpathDefined
set CLASSPATH=%_CP:"=%
goto fullCmd
:classpathDefined
set CLASSPATH=%_CP:"=%;%CLASSPATH:"=%
:fullCmd
History
Date User Action Args
2010-01-15 23:56:34otmarhumbelsetmessageid: <1263599794.23.0.773512058613.issue1330@psf.upfronthosting.co.za>
2010-01-15 23:56:34otmarhumbelsetrecipients: + otmarhumbel, jaraco, took, TimVukman
2010-01-15 23:56:34otmarhumbellinkissue1330 messages
2010-01-15 23:56:34otmarhumbelcreate