I had the exact same problem and fixed it adding that line to the __boot__.py file in the app's package contents, but I was wondering if there was a way to tell py2app to do this automatically in the setup script because otherwise I'd have to do it manually every time I build my project. Py2exe has a custom boot script option but it doesn't look like py2app does.
Thanks,
Eddie
kelsolaar_fool wrote:
Ok the QtCore.so problem got solved by adding this line into the __boot__.py :
sys.path = [os.path.join(os.environ['RESOURCEPATH'], 'lib', 'python2.5', 'lib-dynload')] + sys.path