From: Martin v. Löwis Date: Sat, 20 Sep 2003 10:50:28 +0000 (+0000) Subject: Patch #805678: Add .so symlink during make install. X-Git-Tag: v2.3.1~38 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f68b082072024ddbe23bd0873e9efb56e77ef6f3;p=thirdparty%2FPython%2Fcpython.git Patch #805678: Add .so symlink during make install. --- diff --git a/Makefile.pre.in b/Makefile.pre.in index a91e36c4f446..09c395fdde9b 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -609,6 +609,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