Re: [Pyobjc-dev] bootstrapping with execve in /bin/sh?
Brought to you by:
ronaldoussoren
From: Just v. R. <ju...@le...> - 2002-11-27 16:08:06
|
Ronald Oussoren wrote: > Why would it be useless for standalone apps? I suppose standalone apps > have a python interpreter stuffed inside the resources directory. They do. > You > can then create a relative symlink to this interpreter (e.g. cd > MyApp.app/Contents/MacOS && ln -s ../Resources/python .) Hm, yes, I suppose. I just found another trick, though: I can put the python executable in Contents/MacOS and directly execute it from there: it works!! Btw: I'm still not able to pass PYTHONPATH to the process started with exec. This doesn't seem to work: export $PYTHONPATH PYTHONPATH=$res Any thoughts? Just |