Bowie Owens wrote:

Hi,

I had some trouble with the configure script that comes with pyorbit on our Alpha at work. The problem is ./libtool --config reports export_dynamic_flag_spec="". This causes sed to exit with an error in the following line.

PYORBIT_LIBS=`echo $PYORBIT_LIBS | sed -e "s/$export_dynamic//"`

So PYORBIT_LIBS ends up being empty, which causes trouble later on.

Wrapping an if around the above statement seems to fix the problem.

if test "x$export_dynamic" != "x"; then
  PYORBIT_LIBS=`echo $PYORBIT_LIBS | sed -e "s/$export_dynamic//"`
fi

PS Thanks for the great python ORBit bindings. Python is an excellent language for experimenting at the client side and pyorbit seems to work quite well.


Thanks for the bug report. That problem has been fixed in CVS, so shouldn't bother you in the next PyORBit release.

The other feature people might like in the next PyORBit release is the ability to load up IDL files at runtime (as an alternative to typelibs).

James.

--
Email: [EMAIL PROTECTED]
WWW:   http://www.daa.com.au/~james/



_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://www.async.com.br/faq/pygtk/

Reply via email to