Re: classpath suddenly not found with fop script and cygwin

2012-03-16 Thread Paul Tremblay
I figured it out. The start of the classpath (LOCALCLASSPATH) is: C:/ava/fop-2007/lib... It should be C:/cygwin/java/fop-2007/lib... Changing the text at the start of the path fixes the error. In my case, I inserted these lines in the script: echo $LOCALCLASSPATH exit 0 then ran:

Re: classpath suddenly not found with fop script and cygwin

2012-03-16 Thread Paul Tremblay
Actually, a better fix just involves setting the CLASSPATH variable in bash. So: 1. First put the following in the script, almost at the end of the file, just before the line that starts with fop_exec_command: echo $LOCALCLASSPATH exit 0 If you don't write access to the script, copy it