Index: fop.bat =================================================================== -java -cp "%LOCALCLASSPATH%" org.apache.fop.apps.Fop %1 %2 %3 %4 %5 %6 %7 %8 +rem 'shift' removes %0 (i.e., the fop.bat filename) +shift +java -cp "%LOCALCLASSPATH%" org.apache.fop.apps.Fop %*
Last time I had to work on cmdline args in windows, the %* trick didn't work on win9x:
http://sourceforge.net/tracker/?group_id=12867&atid=112867&func=detail&aid=484181
Unfortunately I can't test on a win9x so I can't create our own solution and I don't know if we can copy the solution from jython (which I know work on all real versions windows) due to license differences.
Perhaps we should just copy the loop from ant and hope that ant works on win9x.
regards, finn