Message4622

Author weiqigao
Recipients weiqigao
Date 2009-04-30.15:19:08
SpamBayes Score 0.00034068356
Marked as misclassified No
Message-id <1241104749.64.0.607465281354.issue1334@psf.upfronthosting.co.za>
In-reply-to
Content
In a Jython2.5b4 installation, the startup shell script 
/path/to/jython2.5b4/jython contains the following line:

  CP_DELIMITER=":"

which causes the script to fail on Cygwin based systems.  It should be 
changed to

  if $cygwin; then
    CP_DELIMITER=";"
  else
    CP_DELIMITER=":"
  fi
History
Date User Action Args
2009-04-30 15:19:09weiqigaosetrecipients: + weiqigao
2009-04-30 15:19:09weiqigaosetmessageid: <1241104749.64.0.607465281354.issue1334@psf.upfronthosting.co.za>
2009-04-30 15:19:09weiqigaolinkissue1334 messages
2009-04-30 15:19:09weiqigaocreate