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 ronaldoussoren
Recipients akitada, ronaldoussoren, rpetrov, skip.montanaro
Date 2009-01-02.15:06:48
SpamBayes Score 1.2963513e-05
Marked as misclassified No
Message-id <1230908809.58.0.610754571515.issue4472@psf.upfronthosting.co.za>
In-reply-to
Content
I've applied this patch. If I understand things correctly that should 
fix the cygwin issue.

Index: Makefile.pre.in
===================================================================
--- Makefile.pre.in	(revision 68149)
+++ Makefile.pre.in	(working copy)
@@ -773,8 +773,8 @@
 	done
 	$(INSTALL_PROGRAM) $(BUILDPYTHON) 
$(DESTDIR)$(BINDIR)/python$(VERSION)$(EXE)
 	if test -f $(LDLIBRARY); then \
-		if test "$(SO)" = .dll; then \
-			$(INSTALL_SHARED) $(LDLIBRARY) 
$(DESTDIR)$(BINDIR); \
+		if test -n "$(DLLLIBRARY)" ; then \
+			$(INSTALL_SHARED) $(DLLLIBRARY) 
$(DESTDIR)$(BINDIR); \
 		else \
 			$(INSTALL_SHARED) $(LDLIBRARY) 
$(DESTDIR)$(LIBDIR)/$(INSTSONAME); \
 			if test $(LDLIBRARY) != $(INSTSONAME); then \
History
Date User Action Args
2009-01-02 15:06:49ronaldoussorensetrecipients: + ronaldoussoren, skip.montanaro, rpetrov, akitada
2009-01-02 15:06:49ronaldoussorensetmessageid: <1230908809.58.0.610754571515.issue4472@psf.upfronthosting.co.za>
2009-01-02 15:06:49ronaldoussorenlinkissue4472 messages
2009-01-02 15:06:48ronaldoussorencreate