[Python-checkins] r82934 - in python/branches/py3k: Makefile.pre.in Misc/NEWS
benjamin.peterson
python-checkins at python.org
Sat Jul 17 22:39:24 CEST 2010
Author: benjamin.peterson
Date: Sat Jul 17 22:39:23 2010
New Revision: 82934
Log:
sharedinstall should depend on sharedmods #9280
Modified:
python/branches/py3k/Makefile.pre.in
python/branches/py3k/Misc/NEWS
Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in (original)
+++ python/branches/py3k/Makefile.pre.in Sat Jul 17 22:39:23 2010
@@ -1045,7 +1045,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) \
Modified: python/branches/py3k/Misc/NEWS
==============================================================================
--- python/branches/py3k/Misc/NEWS (original)
+++ python/branches/py3k/Misc/NEWS Sat Jul 17 22:39:23 2010
@@ -1554,6 +1554,8 @@
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
More information about the Python-checkins
mailing list