Re: Re: build Phoenix from source fails
Robin Dunn <[email protected]>
| Newsgroups | gmane.comp.python.wxpython.devel |
|---|---|
| Message-ID | <[email protected]> |
Greg Couch wrote: > So what's the current way of building Phoenix from source? Here's my script: > > python build.py clean > python build.py touch etg --nodoc > python build.py dox etg --nodoc sip build > > It now fails earlier in the "touch etg" stage with: > ... > AssertionError: Doxygen XML folder not found: > /home/gregc/src/Phoenix/ext/wxWidgets/docs/doxygen/out/xml Because you are running the etg command before the dox command. The dox command generates the XML, and the etg command consumes it. Remove the "etg --nodoc" from the 2nd line above. Or you could combine them all into one line, just as long as dox is done before etg. -- Robin Dunn Software Craftsman http://wxPython.org -- You received this message because you are subscribed to the Google Groups "wxPython-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.