[Pythonmac-SIG] Name that Python

Bob Ippolito bob@redivi.com
Mon, 22 Jul 2002 14:03:42 -0400


Well you could reverse engineer the process, or keep a set of diff files 
to go from the base to any of the others.. or flat out just include 
install_name_tool in the installer -- which would be useful, because 
you're going to need it for installing 3rd party .so modules!

-bob

On Monday, July 22, 2002, at 12:50 PM, Ronald Oussoren wrote:

> A quick scan through /Library/Receipts seems to indicate that the tool 
> is part of the developer tools:
>
> $ find . -name '*.bom' | while read fname; do echo ${fname} \
> 	`lsbom ${fname} | grep install_name_tool`; done | grep 
> install_name_tool
> ./DevTools.pkg/Contents/Resources/DevTools.bom 
> ./usr/bin/install_name_tool 100555 0/0 109040 2985776814 
> ./usr/share/man/man1/install_name_tool.1 100444 0/0 1002 1086208193
>
> Is the tool really needed on the system of someone developing with 
> python? If the @executable_path is patched into the system as is you 
> could add (yet) another python binary for use in the output of 
> BuildApplication.
>
> Ronald
>
> On Monday, July 22, 2002, at 04:34 , Jack Jansen wrote:
>
>> Ah, this is good news!
>>
>> Is there anyone here who does *not* have the developer tools 
>> installed, and could they please check that they have 
>> install_name_tool? Then I think we have a workable solution...
>>
>>
>