Message3496

Author MrMeanie
Recipients MrMeanie, astigmatik, otmarhumbel
Date 2008-09-10.07:59:41
SpamBayes Score 5.7166585e-07
Marked as misclassified No
Message-id <1221033582.06.0.210587605876.issue1123@psf.upfronthosting.co.za>
In-reply-to
Content
I am running Vista, and this problem still occurs when you supply an
argument (a python file to run in my case). I get the message:

\Java\jre1.6.0_06\lib\ext\QTJava.zip was unexpected at this time.

I fixed it by changing:

if ["%_CMP%"] == ["--verify"] (
   set CLASSPATH=%_CP:"=%;%CLASSPATH:"=%
   set _CP=
   goto :nextArg
)


to:



if ["%_CMP%"] == ["--verify"] (
   set CLASSPATH=\"%_CP:"=%;%CLASSPATH:"=%\"
   set _CP=
   goto :nextArg
)
History
Date User Action Args
2008-09-10 07:59:42MrMeaniesetmessageid: <1221033582.06.0.210587605876.issue1123@psf.upfronthosting.co.za>
2008-09-10 07:59:42MrMeaniesetrecipients: + MrMeanie, otmarhumbel, astigmatik
2008-09-10 07:59:41MrMeanielinkissue1123 messages
2008-09-10 07:59:41MrMeaniecreate