From: Martin v. Löwis Date: Sat, 20 Sep 2003 10:50:48 +0000 (+0000) Subject: Patch #805678: Add .so symlink during make install. Backported to 2.3. X-Git-Tag: v2.4a1~1561 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cc6c29e33a50f5a881c4e1c9cd513309bdc78c6;p=python Patch #805678: Add .so symlink during make install. Backported to 2.3. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index 82073fee4c..c87bf6e8ef 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -613,6 +613,7 @@ altbininstall: $(BUILDPYTHON) $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(BINDIR); \ else \ $(INSTALL_SHARED) libpython$(VERSION)$(SO) $(DESTDIR)$(LIBDIR)/$(INSTSONAME); \ + (cd $(DESTDIR)$(LIBDIR); $(LN) -sf $(INSTSONAME) libpython$(VERSION)$(SO)); \ fi; \ else true; \ fi