This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ned.deily
Recipients ned.deily, ronaldoussoren, srid, tarek
Date 2009-06-03.01:57:57
SpamBayes Score 1.6198248e-06
Marked as misclassified No
Message-id <1243994279.45.0.586719823814.issue6170@psf.upfronthosting.co.za>
In-reply-to
Content
That seems to work.  However, while testing that, I found another, minor 
problem in that same area.  In Makefile.pre.in bininstall target just 
before the lines you cite, there is also this added in r71935:

-rm -f $(DESTDIR)$(BINDIR)/python3-config
(cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python3-
config)

Prior to that, though, the Mac Makefile target install_versionedtools is 
mucking in the same area:

if [ ! -h "$(DESTDIR)$(prefix)/bin/python3-config" ]; then \
  mv "$(DESTDIR)$(prefix)/bin/python3-config" 
"$(DESTDIR)$(prefix)/bin/python$(VERSION)-config" ;\
  ln -sf "python$(VERSION)-config" "$(DESTDIR)$(prefix)/bin/python3-
config" ; \
fi

and, in fact, the mv fails with an error because (1) the python3-config 
hasn't been created yet and (2) the test is incorrect: ! -h is also true 
if the file doesn't exist.  With the code in bininstall, I think these 
lines can be safely removed from install_versionedtools.
History
Date User Action Args
2009-06-03 01:57:59ned.deilysetrecipients: + ned.deily, ronaldoussoren, tarek, srid
2009-06-03 01:57:59ned.deilysetmessageid: <1243994279.45.0.586719823814.issue6170@psf.upfronthosting.co.za>
2009-06-03 01:57:57ned.deilylinkissue6170 messages
2009-06-03 01:57:57ned.deilycreate