Merged revisions 82934 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r82934 | benjamin.peterson | 2010-07-17 15:39:23 -0500 (Sat, 17 Jul 2010) | 1 line
sharedinstall should depend on sharedmods #9280
........
diff --git a/Makefile.pre.in b/Makefile.pre.in
index 2d18d62..b26b3bc 100644
--- a/Makefile.pre.in
+++ b/Makefile.pre.in
@@ -1042,7 +1042,7 @@
# Install the dynamically loadable modules
# This goes into $(exec_prefix)
-sharedinstall:
+sharedinstall: sharedmods
$(RUNSHARED) ./$(BUILDPYTHON) -E $(srcdir)/setup.py install \
--prefix=$(prefix) \
--install-scripts=$(BINDIR) \
diff --git a/Misc/NEWS b/Misc/NEWS
index 17fb072..d86566e 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,11 @@
Extension Modules
-----------------
+Build
+-----
+
+- Issue #9280: Make sharedinstall depend on sharedmods.
+
Tests
-----