]> granicus.if.org Git - python/commitdiff
sharedinstall should depend on sharedmods #9280
authorBenjamin Peterson <benjamin@python.org>
Sat, 17 Jul 2010 20:39:23 +0000 (20:39 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 17 Jul 2010 20:39:23 +0000 (20:39 +0000)
Makefile.pre.in
Misc/NEWS

index 1fb764f5c23d005da13e2b533cb6b3fe63a1b73b..ffa2510418ce2afb0b512af3ae86a40f4e75c97b 100644 (file)
@@ -1045,7 +1045,7 @@ libainstall:      all python-config
 
 # 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) \
index c6dbfef18341472de25db8e2eb0b3a6b4c26012b..04309a7f23becbc7dddbed5f738a3312d534077e 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1554,6 +1554,8 @@ Extension Modules
 Build
 -----
 
+- Issue #9280: Make sharedinstall depend on sharedmods.
+
 - Issue #9189: Make a user-specified CFLAGS, CPPFLAGS, or LDFLAGS
   setting override the configure and makefile defaults, without
   deleting options the user didn't intend to override.  Developers