summaryrefslogtreecommitdiffstats
path: root/Makefile.pre.in
diff options
context:
space:
mode:
authorRonald Oussoren <ronaldoussoren@mac.com>2009-01-02 15:06:00 (GMT)
committerRonald Oussoren <ronaldoussoren@mac.com>2009-01-02 15:06:00 (GMT)
commit0bbebbbee300679881fd7c09b2138cfab13e267d (patch)
tree7e0426d3567adfd0ff5ff82f44b1ed5cc9e418dc /Makefile.pre.in
parentabcc168c69868c447dc976841ce1978f2298d4a0 (diff)
downloadcpython-0bbebbbee300679881fd7c09b2138cfab13e267d.zip
cpython-0bbebbbee300679881fd7c09b2138cfab13e267d.tar.gz
cpython-0bbebbbee300679881fd7c09b2138cfab13e267d.tar.bz2
Fix for issue 4472 is incompatible with Cygwin, this patch
should fix that.
Diffstat (limited to 'Makefile.pre.in')
-rw-r--r--Makefile.pre.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in
index ac510be..83824ec 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -773,8 +773,8 @@ altbininstall: $(BUILDPYTHON)
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 \