This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Xalan and path problem


Hi,

we use Xalan on our UNIX/LINUX machines and I want now to the same on
Cygwin. I installed Xerces+Xalan(the windows binaries).

In our UNIX scripts the call to Xalan is:

Xalan -o $RESULTFILE $XMLFILE $XSLFILE

where $RESULTFILE, $XMLFILE and $XSLFILE are specified as
UNIX-paths. 

That doesn't work under Cygwin I had to write:

Xalan -o `cygpath -w $RESULTFILE` ...

Of course I could now write
if $cywin ; then
 Xalan -o `cygpath -w $RESULTFILE` ...
else
 Xalan -o $RESULTFILE $XMLFILE $XSLFILE
fi

but I don't want change the script.

Is there another way to solve the problem ?

Thomas

-- 


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]