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 georg.brandl
Recipients akineko, georg.brandl, loewis
Date 2007-09-06.17:30:22
SpamBayes Score 0.03201009
Marked as misclassified No
Message-id <46E0392F.8050303@python.org>
In-reply-to <1189097983.67.0.980419139201.issue1095@psf.upfronthosting.co.za>
Content
[Martin]
> I'm not sure why we bother checking whether the old file exists before
> removing it, instead of just doing 'rm -f'; that has been there since
> r6352 with no explanation given.

So would this patch be acceptable?

Index: Makefile.pre.in
===================================================================
--- Makefile.pre.in     (Revision 57865)
+++ Makefile.pre.in     (Arbeitskopie)
@@ -655,7 +655,8 @@
        else true; \
        fi
        (cd $(DESTDIR)$(BINDIR); $(LN) python$(VERSION)$(EXE) $(PYTHON))
-       (cd $(DESTDIR)$(BINDIR); $(LN) -sf python$(VERSION)-config python-config)
+       -rm -f $(DESTDIR)$(BINDIR)/python-config
+       (cd $(DESTDIR)$(BINDIR); $(LN) -s python$(VERSION)-config python-config)

 # Install the interpreter with $(VERSION) affixed
 # This goes into $(exec_prefix)
History
Date User Action Args
2007-09-06 17:30:22georg.brandlsetspambayes_score: 0.0320101 -> 0.03201009
recipients: + georg.brandl, loewis, akineko
2007-09-06 17:30:22georg.brandllinkissue1095 messages
2007-09-06 17:30:22georg.brandlcreate