I've been trying to do a framework install of Python 2.4.1 to a 
non-standard location, on Mac OS X 10.3.8.

$ ./configure --prefix=<someplace> 
--enable-framework=<someplace>/Frameworks
$ make
$ make frameworkinstall

The last step has been failing.  The cause appears to be line 20 of 
Mac/OSX/Makefile:

bindir=/usr/local/bin

I changed it to

bindir=$(prefix)/bin

Now the frameworkinstall seems to work.

Is there a reason why bindir needs to be hardwired to /usr/local/bin?

Apologies if this has already been discussed.  I have searched my 
Python-Mac mailbox, the Python sourceforge bugtracker and Google, but 
have found nothing relevant.

--
Mitch

_______________________________________________
Pythonmac-SIG maillist  -  Pythonmac-SIG@python.org
http://mail.python.org/mailman/listinfo/pythonmac-sig

Reply via email to